summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Elliott Hughes <enh@google.com> 2019-05-09 21:32:52 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2019-05-09 21:32:52 +0000
commit71e79a2396a0fa32063ae6e46b866d91b12d6196 (patch)
tree62dcdb719d6fa233c91ce795a7cf338fb7cb73f3
parent30fc8829edf586abf1198991147ccab7241b58d7 (diff)
parent7a6cc0c006d76953760353c00048c8134c9ba294 (diff)
Merge "Track libziparchive API change."
-rw-r--r--core/jni/android_util_jar_StrictJarFile.cpp12
-rw-r--r--libs/androidfw/ApkAssets.cpp3
-rw-r--r--libs/androidfw/ZipFileRO.cpp5
3 files changed, 4 insertions, 16 deletions
diff --git a/core/jni/android_util_jar_StrictJarFile.cpp b/core/jni/android_util_jar_StrictJarFile.cpp
index a26707eedb28..e33da9167e05 100644
--- a/core/jni/android_util_jar_StrictJarFile.cpp
+++ b/core/jni/android_util_jar_StrictJarFile.cpp
@@ -100,16 +100,8 @@ jlong StrictJarFile_nativeStartIteration(JNIEnv* env, jobject, jlong nativeHandl
}
IterationHandle* handle = new IterationHandle();
- int32_t error = 0;
- if (prefixChars.size() == 0) {
- error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle),
- handle->CookieAddress(), NULL, NULL);
- } else {
- ZipString entry_name(prefixChars.c_str());
- error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle),
- handle->CookieAddress(), &entry_name, NULL);
- }
-
+ int32_t error = StartIteration(reinterpret_cast<ZipArchiveHandle>(nativeHandle),
+ handle->CookieAddress(), prefixChars.c_str(), "");
if (error) {
throwIoException(env, error);
return static_cast<jlong>(-1);
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;
}
diff --git a/libs/androidfw/ZipFileRO.cpp b/libs/androidfw/ZipFileRO.cpp
index 44614c11fb14..ee5f7783635d 100644
--- a/libs/androidfw/ZipFileRO.cpp
+++ b/libs/androidfw/ZipFileRO.cpp
@@ -149,11 +149,8 @@ bool ZipFileRO::startIteration(void** cookie) {
bool ZipFileRO::startIteration(void** cookie, const char* prefix, const char* suffix)
{
_ZipEntryRO* ze = new _ZipEntryRO;
- ZipString pe(prefix ? prefix : "");
- ZipString se(suffix ? suffix : "");
int32_t error = StartIteration(mHandle, &(ze->cookie),
- prefix ? &pe : NULL,
- suffix ? &se : NULL);
+ prefix ? prefix : "", suffix ? suffix : "");
if (error) {
ALOGW("Could not start iteration over %s: %s", mFileName != NULL ? mFileName : "<null>",
ErrorCodeString(error));