summaryrefslogtreecommitdiff
path: root/libs/androidfw/ZipFileRO.cpp
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2019-05-06 23:45:16 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2019-05-06 23:45:16 +0000
commit32581e1dd217eda6ab0977e7420dc11a1796fe9d (patch)
tree1c133212a25a839b4da17900a1d0cbd4a6e8626a /libs/androidfw/ZipFileRO.cpp
parentbdb61f3cf2317c85975fd630193a7d93fec7df1a (diff)
parentb97e737c181d9dec996df6d6d7777b66a1aea946 (diff)
Merge "Track libziparchive API change."
Diffstat (limited to 'libs/androidfw/ZipFileRO.cpp')
-rw-r--r--libs/androidfw/ZipFileRO.cpp2
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;