diff options
author | 2019-05-06 23:45:16 +0000 | |
---|---|---|
committer | 2019-05-06 23:45:16 +0000 | |
commit | 32581e1dd217eda6ab0977e7420dc11a1796fe9d (patch) | |
tree | 1c133212a25a839b4da17900a1d0cbd4a6e8626a /libs/androidfw/ZipFileRO.cpp | |
parent | bdb61f3cf2317c85975fd630193a7d93fec7df1a (diff) | |
parent | b97e737c181d9dec996df6d6d7777b66a1aea946 (diff) |
Merge "Track libziparchive API change."
Diffstat (limited to 'libs/androidfw/ZipFileRO.cpp')
-rw-r--r-- | libs/androidfw/ZipFileRO.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/androidfw/ZipFileRO.cpp b/libs/androidfw/ZipFileRO.cpp index 6e2ca60cc3d3..44614c11fb14 100644 --- a/libs/androidfw/ZipFileRO.cpp +++ b/libs/androidfw/ZipFileRO.cpp @@ -98,7 +98,7 @@ ZipEntryRO ZipFileRO::findEntryByName(const char* entryName) const data->name = ZipString(entryName); - const int32_t error = FindEntry(mHandle, data->name, &(data->entry)); + const int32_t error = FindEntry(mHandle, entryName, &(data->entry)); if (error) { delete data; return NULL; |