diff options
author | Tianjie Xu <xunchang@google.com> | 2017-11-06 20:02:01 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-11-06 20:02:01 +0100 |
commit | c1ab2bb5354354ad13da37dd2b664d861d9e2111 (patch) | |
tree | e5b3cb24be5eff1e6796814b3a023160a42acd97 /applypatch/freecache.cpp | |
parent | Merge "Clean up fuse_sideload and add a testcase." (diff) | |
parent | Merge "Switch to bionic gtest in bootable/recovery" (diff) | |
download | android_bootable_recovery-c1ab2bb5354354ad13da37dd2b664d861d9e2111.tar android_bootable_recovery-c1ab2bb5354354ad13da37dd2b664d861d9e2111.tar.gz android_bootable_recovery-c1ab2bb5354354ad13da37dd2b664d861d9e2111.tar.bz2 android_bootable_recovery-c1ab2bb5354354ad13da37dd2b664d861d9e2111.tar.lz android_bootable_recovery-c1ab2bb5354354ad13da37dd2b664d861d9e2111.tar.xz android_bootable_recovery-c1ab2bb5354354ad13da37dd2b664d861d9e2111.tar.zst android_bootable_recovery-c1ab2bb5354354ad13da37dd2b664d861d9e2111.zip |
Diffstat (limited to '')
-rw-r--r-- | applypatch/freecache.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/applypatch/freecache.cpp b/applypatch/freecache.cpp index 331cae265..0a40baa97 100644 --- a/applypatch/freecache.cpp +++ b/applypatch/freecache.cpp @@ -90,10 +90,9 @@ static std::set<std::string> FindExpendableFiles() { while ((de = readdir(d.get())) != 0) { std::string path = std::string(dirs[i]) + "/" + de->d_name; - // We can't delete CACHE_TEMP_SOURCE; if it's there we might have - // restarted during installation and could be depending on it to - // be there. - if (path == CACHE_TEMP_SOURCE) { + // We can't delete cache_temp_source; if it's there we might have restarted during + // installation and could be depending on it to be there. + if (path == cache_temp_source) { continue; } |