summaryrefslogtreecommitdiffstats
path: root/applypatch/freecache.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-11-06 19:56:27 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-11-06 19:56:27 +0100
commitbf41f2aa238a9d928473c69c93308eb0b4f9719d (patch)
treee5b3cb24be5eff1e6796814b3a023160a42acd97 /applypatch/freecache.cpp
parentMerge "Clean up fuse_sideload and add a testcase." (diff)
parentSwitch to bionic gtest in bootable/recovery (diff)
downloadandroid_bootable_recovery-bf41f2aa238a9d928473c69c93308eb0b4f9719d.tar
android_bootable_recovery-bf41f2aa238a9d928473c69c93308eb0b4f9719d.tar.gz
android_bootable_recovery-bf41f2aa238a9d928473c69c93308eb0b4f9719d.tar.bz2
android_bootable_recovery-bf41f2aa238a9d928473c69c93308eb0b4f9719d.tar.lz
android_bootable_recovery-bf41f2aa238a9d928473c69c93308eb0b4f9719d.tar.xz
android_bootable_recovery-bf41f2aa238a9d928473c69c93308eb0b4f9719d.tar.zst
android_bootable_recovery-bf41f2aa238a9d928473c69c93308eb0b4f9719d.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;
}