summaryrefslogtreecommitdiffstats
path: root/updater
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-12-01 03:52:23 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-12-01 03:52:23 +0100
commitd8fadfb606698cfed9ae8eb0a72463757a2ba697 (patch)
treee9880840a1c77ce51810def4d873dad21e5fa9b8 /updater
parentMerge "root: Fix an issue when volume length from fs_mgr is negative." (diff)
parentDetect interrupted update due to power off (diff)
downloadandroid_bootable_recovery-d8fadfb606698cfed9ae8eb0a72463757a2ba697.tar
android_bootable_recovery-d8fadfb606698cfed9ae8eb0a72463757a2ba697.tar.gz
android_bootable_recovery-d8fadfb606698cfed9ae8eb0a72463757a2ba697.tar.bz2
android_bootable_recovery-d8fadfb606698cfed9ae8eb0a72463757a2ba697.tar.lz
android_bootable_recovery-d8fadfb606698cfed9ae8eb0a72463757a2ba697.tar.xz
android_bootable_recovery-d8fadfb606698cfed9ae8eb0a72463757a2ba697.tar.zst
android_bootable_recovery-d8fadfb606698cfed9ae8eb0a72463757a2ba697.zip
Diffstat (limited to 'updater')
-rw-r--r--updater/install.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/updater/install.cpp b/updater/install.cpp
index a111f4b79..870b85791 100644
--- a/updater/install.cpp
+++ b/updater/install.cpp
@@ -569,7 +569,11 @@ Value* ApplyPatchSpaceFn(const char* name, State* state, const std::vector<std::
name, bytes_str.c_str());
}
- return StringValue(CacheSizeCheck(bytes) ? "" : "t");
+ // Skip the cache size check if the update is a retry.
+ if (state->is_retry || CacheSizeCheck(bytes) == 0) {
+ return StringValue("t");
+ }
+ return StringValue("");
}
// apply_patch(src_file, tgt_file, tgt_sha1, tgt_size, patch1_sha1, patch1_blob, [...])