summaryrefslogtreecommitdiffstats
path: root/applypatch/freecache.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2018-03-01 19:58:27 +0100
committerandroid-build-merger <android-build-merger@google.com>2018-03-01 19:58:27 +0100
commit4249cdfe29491b0ad8c418d8015a50cb37b6ff9b (patch)
treecdf6bc19fb0749ae82402af11aa34ab7db1a6f6e /applypatch/freecache.cpp
parentMerge "Fix the behavior of undefined commands in BlockImageVerify" am: ac4818d6af am: 7b9a92c1e2 (diff)
parentMerge "Add a singleton CacheLocation to replace the hard coded locations" am: 47cd789eed (diff)
downloadandroid_bootable_recovery-4249cdfe29491b0ad8c418d8015a50cb37b6ff9b.tar
android_bootable_recovery-4249cdfe29491b0ad8c418d8015a50cb37b6ff9b.tar.gz
android_bootable_recovery-4249cdfe29491b0ad8c418d8015a50cb37b6ff9b.tar.bz2
android_bootable_recovery-4249cdfe29491b0ad8c418d8015a50cb37b6ff9b.tar.lz
android_bootable_recovery-4249cdfe29491b0ad8c418d8015a50cb37b6ff9b.tar.xz
android_bootable_recovery-4249cdfe29491b0ad8c418d8015a50cb37b6ff9b.tar.zst
android_bootable_recovery-4249cdfe29491b0ad8c418d8015a50cb37b6ff9b.zip
Diffstat (limited to 'applypatch/freecache.cpp')
-rw-r--r--applypatch/freecache.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/applypatch/freecache.cpp b/applypatch/freecache.cpp
index ec1d20cec..ea364d8e6 100644
--- a/applypatch/freecache.cpp
+++ b/applypatch/freecache.cpp
@@ -33,6 +33,7 @@
#include <android-base/stringprintf.h>
#include "applypatch/applypatch.h"
+#include "otautil/cache_location.h"
static int EliminateOpenFiles(std::set<std::string>* files) {
std::unique_ptr<DIR, decltype(&closedir)> d(opendir("/proc"), closedir);
@@ -92,7 +93,7 @@ static std::set<std::string> FindExpendableFiles() {
// 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) {
+ if (path == CacheLocation::location().cache_temp_source()) {
continue;
}