summaryrefslogtreecommitdiffstats
path: root/install/install.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-05-23 03:52:29 +0200
committerElliott Hughes <enh@google.com>2019-05-23 03:52:29 +0200
commit88d8001e752573d8b87f7b0cbc784a18622abddd (patch)
treea7d815c4ea32e256958dee0b95026b7e18a6a755 /install/install.cpp
parentMerge "recovery: report compliant reboot reason" (diff)
downloadandroid_bootable_recovery-88d8001e752573d8b87f7b0cbc784a18622abddd.tar
android_bootable_recovery-88d8001e752573d8b87f7b0cbc784a18622abddd.tar.gz
android_bootable_recovery-88d8001e752573d8b87f7b0cbc784a18622abddd.tar.bz2
android_bootable_recovery-88d8001e752573d8b87f7b0cbc784a18622abddd.tar.lz
android_bootable_recovery-88d8001e752573d8b87f7b0cbc784a18622abddd.tar.xz
android_bootable_recovery-88d8001e752573d8b87f7b0cbc784a18622abddd.tar.zst
android_bootable_recovery-88d8001e752573d8b87f7b0cbc784a18622abddd.zip
Diffstat (limited to 'install/install.cpp')
-rw-r--r--install/install.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/install.cpp b/install/install.cpp
index 1b51b4246..8d46641dc 100644
--- a/install/install.cpp
+++ b/install/install.cpp
@@ -539,13 +539,13 @@ bool verify_package_compatibility(ZipArchiveHandle package_zip) {
std::vector<std::string> compatibility_info;
ZipEntry info_entry;
- ZipString info_name;
+ std::string info_name;
while (Next(cookie, &info_entry, &info_name) == 0) {
std::string content(info_entry.uncompressed_length, '\0');
int32_t ret = ExtractToMemory(zip_handle, &info_entry, reinterpret_cast<uint8_t*>(&content[0]),
info_entry.uncompressed_length);
if (ret != 0) {
- LOG(ERROR) << "Failed to read " << info_name.name << ": " << ErrorCodeString(ret);
+ LOG(ERROR) << "Failed to read " << info_name << ": " << ErrorCodeString(ret);
CloseArchive(zip_handle);
return false;
}