Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8dd5b2a2 authored by Tianjie Xu's avatar Tianjie Xu Committed by android-build-merger
Browse files

Merge "Check corruption when reading uncrypt_status file" am: 3cf815a6 am: 40bae5e1

am: 1d556661

Change-Id: I2081d6803377a7bf26175a55b3b5defb7c9d09d1
parents b3d92f0c 1d556661
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -543,6 +543,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());
            }