summaryrefslogtreecommitdiffstats
path: root/applypatch/imgpatch.cpp
diff options
context:
space:
mode:
authorSen Jiang <senj@google.com>2017-02-16 22:18:42 +0100
committerandroid-build-merger <android-build-merger@google.com>2017-02-16 22:18:42 +0100
commit2c467f6e490f868597f2687d26f5eccbdde73a2a (patch)
tree1881bc79a83b1d362856271ff69716440b74682f /applypatch/imgpatch.cpp
parentMerge "recovery: Clean up browse_directory()." (diff)
parentMerge "Use bspatch from external/bsdiff." (diff)
downloadandroid_bootable_recovery-2c467f6e490f868597f2687d26f5eccbdde73a2a.tar
android_bootable_recovery-2c467f6e490f868597f2687d26f5eccbdde73a2a.tar.gz
android_bootable_recovery-2c467f6e490f868597f2687d26f5eccbdde73a2a.tar.bz2
android_bootable_recovery-2c467f6e490f868597f2687d26f5eccbdde73a2a.tar.lz
android_bootable_recovery-2c467f6e490f868597f2687d26f5eccbdde73a2a.tar.xz
android_bootable_recovery-2c467f6e490f868597f2687d26f5eccbdde73a2a.tar.zst
android_bootable_recovery-2c467f6e490f868597f2687d26f5eccbdde73a2a.zip
Diffstat (limited to 'applypatch/imgpatch.cpp')
-rw-r--r--applypatch/imgpatch.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/applypatch/imgpatch.cpp b/applypatch/imgpatch.cpp
index 00ea90efa..8f4a2a42b 100644
--- a/applypatch/imgpatch.cpp
+++ b/applypatch/imgpatch.cpp
@@ -193,6 +193,9 @@ int ApplyImagePatch(const unsigned char* old_data, ssize_t old_size, const Value
// Next, apply the bsdiff patch (in memory) to the uncompressed data.
std::vector<unsigned char> uncompressed_target_data;
+ // TODO(senj): Remove the only usage of ApplyBSDiffPatchMem here,
+ // replace it with ApplyBSDiffPatch with a custom sink function that
+ // wraps the given sink function to stream output to save memory.
if (ApplyBSDiffPatchMem(expanded_source.data(), expanded_len, patch, patch_offset,
&uncompressed_target_data) != 0) {
return -1;