summaryrefslogtreecommitdiffstats
path: root/updater/blockimg.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-04-20 06:02:13 +0200
committerTao Bao <tbao@google.com>2018-04-20 18:27:50 +0200
commit8b0b0f1f02f7990177e0da89eb471da2ced13f4c (patch)
treece9cf683304b2d70ae800bb6811842b375904beb /updater/blockimg.cpp
parentMerge "applypatch: Dump patch info on mismatching patching result." (diff)
downloadandroid_bootable_recovery-8b0b0f1f02f7990177e0da89eb471da2ced13f4c.tar
android_bootable_recovery-8b0b0f1f02f7990177e0da89eb471da2ced13f4c.tar.gz
android_bootable_recovery-8b0b0f1f02f7990177e0da89eb471da2ced13f4c.tar.bz2
android_bootable_recovery-8b0b0f1f02f7990177e0da89eb471da2ced13f4c.tar.lz
android_bootable_recovery-8b0b0f1f02f7990177e0da89eb471da2ced13f4c.tar.xz
android_bootable_recovery-8b0b0f1f02f7990177e0da89eb471da2ced13f4c.tar.zst
android_bootable_recovery-8b0b0f1f02f7990177e0da89eb471da2ced13f4c.zip
Diffstat (limited to 'updater/blockimg.cpp')
-rw-r--r--updater/blockimg.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp
index e93196b27..e72ddd313 100644
--- a/updater/blockimg.cpp
+++ b/updater/blockimg.cpp
@@ -1429,7 +1429,7 @@ static int PerformCommandDiff(CommandParameters& params) {
if (ApplyImagePatch(params.buffer.data(), blocks * BLOCKSIZE, patch_value,
std::bind(&RangeSinkWriter::Write, &writer, std::placeholders::_1,
std::placeholders::_2),
- nullptr, nullptr) != 0) {
+ nullptr) != 0) {
LOG(ERROR) << "Failed to apply image patch.";
failure_type = kPatchApplicationFailure;
return -1;
@@ -1437,8 +1437,7 @@ static int PerformCommandDiff(CommandParameters& params) {
} else {
if (ApplyBSDiffPatch(params.buffer.data(), blocks * BLOCKSIZE, patch_value, 0,
std::bind(&RangeSinkWriter::Write, &writer, std::placeholders::_1,
- std::placeholders::_2),
- nullptr) != 0) {
+ std::placeholders::_2)) != 0) {
LOG(ERROR) << "Failed to apply bsdiff patch.";
failure_type = kPatchApplicationFailure;
return -1;