diff options
author | Elliott Hughes <enh@google.com> | 2019-05-08 12:12:39 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2019-05-08 12:29:25 -0700 |
commit | 7a6cc0c006d76953760353c00048c8134c9ba294 (patch) | |
tree | 24b9044daa8f3a175cb975e4def9d7e04c13050e /libs/androidfw/ApkAssets.cpp | |
parent | 5c47b52b93bc84521b8caa9e115ab415ed9f86ac (diff) |
Track libziparchive API change.
Bug: http://b/129068177
Test: treehugger
Change-Id: Id4b202502b07e08102deda49f7d28ba10a63bb0a
Diffstat (limited to 'libs/androidfw/ApkAssets.cpp')
-rw-r--r-- | libs/androidfw/ApkAssets.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/androidfw/ApkAssets.cpp b/libs/androidfw/ApkAssets.cpp index 47b7d646d79f..7ba7828d71c4 100644 --- a/libs/androidfw/ApkAssets.cpp +++ b/libs/androidfw/ApkAssets.cpp @@ -206,9 +206,8 @@ bool ApkAssets::ForEachFile(const std::string& root_path, root_path_full += '/'; } - ::ZipString prefix(root_path_full.c_str()); void* cookie; - if (::StartIteration(zip_handle_.get(), &cookie, &prefix, nullptr) != 0) { + if (::StartIteration(zip_handle_.get(), &cookie, root_path_full, "") != 0) { return false; } |