diff options
author | Tianjie Xu <xunchang@google.com> | 2017-05-24 20:51:03 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-05-24 20:51:03 +0200 |
commit | aef046255a84592c238855df44f094146c12dd40 (patch) | |
tree | ec3e7849518e4a40bc76b713bcf3908cbd79ddb4 /updater/blockimg.cpp | |
parent | Merge "Print SHA1 of the patch if bsdiff fails with data error" am: 1f9808bd48 (diff) | |
parent | Merge "Retry the update if ApplyBSDiffPatch | ApplyImagePatch fails" (diff) | |
download | android_bootable_recovery-aef046255a84592c238855df44f094146c12dd40.tar android_bootable_recovery-aef046255a84592c238855df44f094146c12dd40.tar.gz android_bootable_recovery-aef046255a84592c238855df44f094146c12dd40.tar.bz2 android_bootable_recovery-aef046255a84592c238855df44f094146c12dd40.tar.lz android_bootable_recovery-aef046255a84592c238855df44f094146c12dd40.tar.xz android_bootable_recovery-aef046255a84592c238855df44f094146c12dd40.tar.zst android_bootable_recovery-aef046255a84592c238855df44f094146c12dd40.zip |
Diffstat (limited to 'updater/blockimg.cpp')
-rw-r--r-- | updater/blockimg.cpp | 2 |
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; } } |