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

Commit 91804d3e authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Always remove the temporary zip file."

parents 13a20a27 e9d2c541
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -1253,13 +1253,9 @@ bool Dumpstate::FinishZipFile() {
    // TODO: remove once FinishZipFile() is automatically handled by Dumpstate's destructor.
    ds.zip_file.reset(nullptr);

    if (IsUserBuild()) {
    MYLOGD("Removing temporary file %s\n", tmp_path_.c_str())
    if (remove(tmp_path_.c_str()) != 0) {
            ALOGW("remove(%s): %s\n", tmp_path_.c_str(), strerror(errno));
        }
    } else {
        MYLOGD("Keeping temporary file %s on non-user build\n", tmp_path_.c_str())
        MYLOGE("Failed to remove temporary file (%s): %s\n", tmp_path_.c_str(), strerror(errno));
    }

    return true;