summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2019-05-10 17:02:14 -0700
committer Elliott Hughes <enh@google.com> 2019-05-10 17:02:14 -0700
commitf31f126ed8aa4733d2e1aa9ad56fb82c9a86a020 (patch)
tree67d10d1734d5cc86b19d424e5c1baa688d7acee1
parent2df17040e538f3b40f664d449fd073c6cebea436 (diff)
Don't explicitly specify no prefix/suffix.
Bug: http://b/129068177 Test: treehugger Change-Id: I987c88c17b7d1fd01129545bdbd4178de446188c
-rw-r--r--tools/aapt2/io/ZipArchive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt2/io/ZipArchive.cpp b/tools/aapt2/io/ZipArchive.cpp
index 269b6c5a12e1..550edd344aa3 100644
--- a/tools/aapt2/io/ZipArchive.cpp
+++ b/tools/aapt2/io/ZipArchive.cpp
@@ -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 {};