diff options
author | Tao Bao <tbao@google.com> | 2016-10-25 04:44:10 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-10-25 04:44:10 +0200 |
commit | e1991428badd05d759990b9d5daad4080772a32d (patch) | |
tree | 09d9a2e70f8503722dfb20019a1c8af335153dd3 /applypatch | |
parent | Merge "Verify wipe package when wiping A/B device in recovery." (diff) | |
parent | applypatch: Fix the bug when constructing VAL_BLOB. (diff) | |
download | android_bootable_recovery-e1991428badd05d759990b9d5daad4080772a32d.tar android_bootable_recovery-e1991428badd05d759990b9d5daad4080772a32d.tar.gz android_bootable_recovery-e1991428badd05d759990b9d5daad4080772a32d.tar.bz2 android_bootable_recovery-e1991428badd05d759990b9d5daad4080772a32d.tar.lz android_bootable_recovery-e1991428badd05d759990b9d5daad4080772a32d.tar.xz android_bootable_recovery-e1991428badd05d759990b9d5daad4080772a32d.tar.zst android_bootable_recovery-e1991428badd05d759990b9d5daad4080772a32d.zip |
Diffstat (limited to 'applypatch')
-rw-r--r-- | applypatch/main.cpp | 5 |
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, |