summaryrefslogtreecommitdiffstats
path: root/applypatch/freecache.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-11-06 20:07:13 +0100
committerandroid-build-merger <android-build-merger@google.com>2017-11-06 20:07:13 +0100
commitd7d0cc4c08e6bb95963af2067ffee2755b351ef2 (patch)
tree80fbaa783f7b9ad8efed0f4f6303c0409b746150 /applypatch/freecache.cpp
parentMerge "Clean up fuse_sideload and add a testcase." am: 73dca3e983 am: 6d61e2123b (diff)
parentMerge "Switch to bionic gtest in bootable/recovery" am: bf41f2aa23 (diff)
downloadandroid_bootable_recovery-d7d0cc4c08e6bb95963af2067ffee2755b351ef2.tar
android_bootable_recovery-d7d0cc4c08e6bb95963af2067ffee2755b351ef2.tar.gz
android_bootable_recovery-d7d0cc4c08e6bb95963af2067ffee2755b351ef2.tar.bz2
android_bootable_recovery-d7d0cc4c08e6bb95963af2067ffee2755b351ef2.tar.lz
android_bootable_recovery-d7d0cc4c08e6bb95963af2067ffee2755b351ef2.tar.xz
android_bootable_recovery-d7d0cc4c08e6bb95963af2067ffee2755b351ef2.tar.zst
android_bootable_recovery-d7d0cc4c08e6bb95963af2067ffee2755b351ef2.zip
Diffstat (limited to 'applypatch/freecache.cpp')
-rw-r--r--applypatch/freecache.cpp7
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;
}