summaryrefslogtreecommitdiffstats
path: root/install/install.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-05-07 23:59:09 +0200
committerElliott Hughes <enh@google.com>2019-05-09 02:28:22 +0200
commit143a03fa034eb7b522a0f734689874907f5c99a0 (patch)
treec030d550e966ca0adc7dcf06ca417407f4a6fd0b /install/install.cpp
parentMerge "Track libziparchive API change." (diff)
downloadandroid_bootable_recovery-143a03fa034eb7b522a0f734689874907f5c99a0.tar
android_bootable_recovery-143a03fa034eb7b522a0f734689874907f5c99a0.tar.gz
android_bootable_recovery-143a03fa034eb7b522a0f734689874907f5c99a0.tar.bz2
android_bootable_recovery-143a03fa034eb7b522a0f734689874907f5c99a0.tar.lz
android_bootable_recovery-143a03fa034eb7b522a0f734689874907f5c99a0.tar.xz
android_bootable_recovery-143a03fa034eb7b522a0f734689874907f5c99a0.tar.zst
android_bootable_recovery-143a03fa034eb7b522a0f734689874907f5c99a0.zip
Diffstat (limited to '')
-rw-r--r--install/install.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/install.cpp b/install/install.cpp
index d62bffc59..1b51b4246 100644
--- a/install/install.cpp
+++ b/install/install.cpp
@@ -529,7 +529,7 @@ bool verify_package_compatibility(ZipArchiveHandle package_zip) {
// Iterate all the entries inside COMPATIBILITY_ZIP_ENTRY and read the contents.
void* cookie;
- ret = StartIteration(zip_handle, &cookie, nullptr, nullptr);
+ ret = StartIteration(zip_handle, &cookie);
if (ret != 0) {
LOG(ERROR) << "Failed to start iterating zip entries: " << ErrorCodeString(ret);
CloseArchive(zip_handle);