summaryrefslogtreecommitdiffstats
path: root/install/verifier.cpp
diff options
context:
space:
mode:
authorKelvin Zhang <zhangkelvin@google.com>2020-09-17 02:19:41 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-09-17 02:19:41 +0200
commita35202befd6460a30330d57e7e69564bc6fb29f9 (patch)
tree8a910b26d07884180bcef5f5f48781ae642cf99e /install/verifier.cpp
parentMerge "Merge Android R" (diff)
parentSwitch to zip64 in recovery (diff)
downloadandroid_bootable_recovery-a35202befd6460a30330d57e7e69564bc6fb29f9.tar
android_bootable_recovery-a35202befd6460a30330d57e7e69564bc6fb29f9.tar.gz
android_bootable_recovery-a35202befd6460a30330d57e7e69564bc6fb29f9.tar.bz2
android_bootable_recovery-a35202befd6460a30330d57e7e69564bc6fb29f9.tar.lz
android_bootable_recovery-a35202befd6460a30330d57e7e69564bc6fb29f9.tar.xz
android_bootable_recovery-a35202befd6460a30330d57e7e69564bc6fb29f9.tar.zst
android_bootable_recovery-a35202befd6460a30330d57e7e69564bc6fb29f9.zip
Diffstat (limited to 'install/verifier.cpp')
-rw-r--r--install/verifier.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/verifier.cpp b/install/verifier.cpp
index ab750442d..d8bc53f69 100644
--- a/install/verifier.cpp
+++ b/install/verifier.cpp
@@ -321,7 +321,7 @@ static std::vector<Certificate> IterateZipEntriesAndSearchForKeys(const ZipArchi
std::vector<Certificate> result;
std::string_view name;
- ZipEntry entry;
+ ZipEntry64 entry;
while ((iter_status = Next(cookie, &entry, &name)) == 0) {
std::vector<uint8_t> pem_content(entry.uncompressed_length);
if (int32_t extract_status =