Merge "Don't explicitly specify no prefix/suffix."

This commit is contained in:
Treehugger Robot
2019-05-13 17:53:23 +00:00
committed by Gerrit Code Review

View File

@@ -106,7 +106,7 @@ std::unique_ptr<ZipFileCollection> ZipFileCollection::Create(
}
void* cookie = nullptr;
result = StartIteration(collection->handle_, &cookie, nullptr, nullptr);
result = StartIteration(collection->handle_, &cookie);
if (result != 0) {
if (out_error) *out_error = ErrorCodeString(result);
return {};