diff options
author | Kelvin Zhang <zhangkelvin@google.com> | 2020-09-17 02:19:41 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-09-17 02:19:41 +0200 |
commit | a35202befd6460a30330d57e7e69564bc6fb29f9 (patch) | |
tree | 8a910b26d07884180bcef5f5f48781ae642cf99e /install/verifier.cpp | |
parent | Merge "Merge Android R" (diff) | |
parent | Switch to zip64 in recovery (diff) | |
download | android_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 '')
-rw-r--r-- | install/verifier.cpp | 2 |
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 = |