summaryrefslogtreecommitdiffstats
path: root/updater/blockimg.cpp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-05-24 22:01:53 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-05-24 22:01:53 +0200
commitccf8ec15f002b7fd7e659222449e09b4bab46597 (patch)
tree460029d2d9c8da53c2294097e08435e20eab99c5 /updater/blockimg.cpp
parentrelease-request-91ef8626-1af7-4595-b2bd-2d85ee97e99f-for-git_oc-mr1-release-4029936 snap-temp-L27200000066301195 (diff)
parentMerge "Retry the update if ApplyBSDiffPatch | ApplyImagePatch fails" am: 9c1a114789 am: 66f02b4e71 am: aef046255a (diff)
downloadandroid_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar.gz
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar.bz2
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar.lz
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar.xz
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.tar.zst
android_bootable_recovery-ccf8ec15f002b7fd7e659222449e09b4bab46597.zip
Diffstat (limited to 'updater/blockimg.cpp')
-rw-r--r--updater/blockimg.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp
index d5c170473..df366b0b8 100644
--- a/updater/blockimg.cpp
+++ b/updater/blockimg.cpp
@@ -1213,6 +1213,7 @@ static int PerformCommandDiff(CommandParameters& params) {
std::placeholders::_2),
nullptr, nullptr) != 0) {
LOG(ERROR) << "Failed to apply image patch.";
+ failure_type = kPatchApplicationFailure;
return -1;
}
} else {
@@ -1221,6 +1222,7 @@ static int PerformCommandDiff(CommandParameters& params) {
std::placeholders::_2),
nullptr) != 0) {
LOG(ERROR) << "Failed to apply bsdiff patch.";
+ failure_type = kPatchApplicationFailure;
return -1;
}
}