diff options
author | Tianjie Xu <xunchang@google.com> | 2016-09-14 00:26:03 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-09-14 00:26:03 +0200 |
commit | 40bae5e1c63a7fe7cd3b64b1d13c1bbb6f18b84a (patch) | |
tree | a7dd9ec0e0fe5a81eb6077b42a2db1e71b54c659 /install.cpp | |
parent | Merge "save uncrypt status to last_install" (diff) | |
parent | Merge "Check corruption when reading uncrypt_status file" (diff) | |
download | android_bootable_recovery-40bae5e1c63a7fe7cd3b64b1d13c1bbb6f18b84a.tar android_bootable_recovery-40bae5e1c63a7fe7cd3b64b1d13c1bbb6f18b84a.tar.gz android_bootable_recovery-40bae5e1c63a7fe7cd3b64b1d13c1bbb6f18b84a.tar.bz2 android_bootable_recovery-40bae5e1c63a7fe7cd3b64b1d13c1bbb6f18b84a.tar.lz android_bootable_recovery-40bae5e1c63a7fe7cd3b64b1d13c1bbb6f18b84a.tar.xz android_bootable_recovery-40bae5e1c63a7fe7cd3b64b1d13c1bbb6f18b84a.tar.zst android_bootable_recovery-40bae5e1c63a7fe7cd3b64b1d13c1bbb6f18b84a.zip |
Diffstat (limited to '')
-rw-r--r-- | install.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/install.cpp b/install.cpp index fac6151b3..4c697420f 100644 --- a/install.cpp +++ b/install.cpp @@ -392,6 +392,8 @@ install_package(const char* path, bool* wipe_cache, const char* install_file, std::string uncrypt_status; if (!android::base::ReadFileToString(UNCRYPT_STATUS, &uncrypt_status)) { PLOG(WARNING) << "failed to read uncrypt status"; + } else if (!android::base::StartsWith(uncrypt_status, "uncrypt_time:")) { + PLOG(WARNING) << "corrupted uncrypt_status: " << uncrypt_status; } else { fprintf(install_log, "%s\n", android::base::Trim(uncrypt_status).c_str()); } |