summaryrefslogtreecommitdiffstats
path: root/updater
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-11-05 22:17:25 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-11-05 22:17:25 +0100
commita0404ecd16c18ba9da18c42946a4d01d9687ba89 (patch)
treefdafa30a43a1b925914805931457bb1c06ca5a84 /updater
parentMerge "tests: Remove obsolete testdata files." (diff)
parentupdater: Error out on underrun during patching. (diff)
downloadandroid_bootable_recovery-a0404ecd16c18ba9da18c42946a4d01d9687ba89.tar
android_bootable_recovery-a0404ecd16c18ba9da18c42946a4d01d9687ba89.tar.gz
android_bootable_recovery-a0404ecd16c18ba9da18c42946a4d01d9687ba89.tar.bz2
android_bootable_recovery-a0404ecd16c18ba9da18c42946a4d01d9687ba89.tar.lz
android_bootable_recovery-a0404ecd16c18ba9da18c42946a4d01d9687ba89.tar.xz
android_bootable_recovery-a0404ecd16c18ba9da18c42946a4d01d9687ba89.tar.zst
android_bootable_recovery-a0404ecd16c18ba9da18c42946a4d01d9687ba89.zip
Diffstat (limited to 'updater')
-rw-r--r--updater/blockimg.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp
index 47849a155..c4c09098e 100644
--- a/updater/blockimg.cpp
+++ b/updater/blockimg.cpp
@@ -1399,7 +1399,10 @@ static int PerformCommandDiff(CommandParameters& params) {
// We expect the output of the patcher to fill the tgt ranges exactly.
if (!writer.Finished()) {
- LOG(ERROR) << "range sink underrun?";
+ LOG(ERROR) << "Failed to fully write target blocks (range sink underrun): Missing "
+ << writer.AvailableSpace() << " bytes";
+ failure_type = kPatchApplicationFailure;
+ return -1;
}
} else {
LOG(INFO) << "skipping " << blocks << " blocks already patched to " << tgt.blocks() << " ["