summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-10-25 04:59:55 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-10-25 04:59:55 +0200
commitba53452938f6cc9405887a88181fceb8cbcc59a2 (patch)
tree369687f9bad82a93dcbdfb74a525803643381fba
parentShrink all recovery loop images with zopflipng am: 2f2c723d1b (diff)
parentMerge "applypatch: Fix the bug when constructing VAL_BLOB." am: e1991428ba am: 565273839e (diff)
downloadandroid_bootable_recovery-ba53452938f6cc9405887a88181fceb8cbcc59a2.tar
android_bootable_recovery-ba53452938f6cc9405887a88181fceb8cbcc59a2.tar.gz
android_bootable_recovery-ba53452938f6cc9405887a88181fceb8cbcc59a2.tar.bz2
android_bootable_recovery-ba53452938f6cc9405887a88181fceb8cbcc59a2.tar.lz
android_bootable_recovery-ba53452938f6cc9405887a88181fceb8cbcc59a2.tar.xz
android_bootable_recovery-ba53452938f6cc9405887a88181fceb8cbcc59a2.tar.zst
android_bootable_recovery-ba53452938f6cc9405887a88181fceb8cbcc59a2.zip
-rw-r--r--applypatch/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/applypatch/main.cpp b/applypatch/main.cpp
index a3a45d06f..294f7ee21 100644
--- a/applypatch/main.cpp
+++ b/applypatch/main.cpp
@@ -99,7 +99,7 @@ static int PatchMode(int argc, char** argv) {
return 1;
}
bonus.type = VAL_BLOB;
- bonus.data = reinterpret_cast<const char*>(bonusFc.data.data());
+ bonus.data = std::string(bonusFc.data.cbegin(), bonusFc.data.cend());
argc -= 2;
argv += 2;
}
@@ -132,7 +132,8 @@ static int PatchMode(int argc, char** argv) {
std::vector<Value> patches;
std::vector<Value*> patch_ptrs;
for (size_t i = 0; i < files.size(); ++i) {
- patches.push_back(Value(VAL_BLOB, reinterpret_cast<const char*>(files[i].data.data())));
+ patches.push_back(Value(VAL_BLOB,
+ std::string(files[i].data.cbegin(), files[i].data.cend())));
patch_ptrs.push_back(&patches[i]);
}
return applypatch(argv[1], argv[2], argv[3], target_size,