summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-10-23 20:55:13 +0200
committerandroid-build-merger <android-build-merger@google.com>2015-10-23 20:55:13 +0200
commit03540bc978321bb76d9a300c2bcc15b0f5c8cb48 (patch)
treee32c06c5a875989d6e2501a1cccb5c955c9adabd
parentam 339ec2ef: am 78615fa5: Merge "Error correction: Use libfec in blockimg.cpp for recovery" (diff)
parentMerge "updater: Bump up the BBOTA version to 4." (diff)
downloadandroid_bootable_recovery-03540bc978321bb76d9a300c2bcc15b0f5c8cb48.tar
android_bootable_recovery-03540bc978321bb76d9a300c2bcc15b0f5c8cb48.tar.gz
android_bootable_recovery-03540bc978321bb76d9a300c2bcc15b0f5c8cb48.tar.bz2
android_bootable_recovery-03540bc978321bb76d9a300c2bcc15b0f5c8cb48.tar.lz
android_bootable_recovery-03540bc978321bb76d9a300c2bcc15b0f5c8cb48.tar.xz
android_bootable_recovery-03540bc978321bb76d9a300c2bcc15b0f5c8cb48.tar.zst
android_bootable_recovery-03540bc978321bb76d9a300c2bcc15b0f5c8cb48.zip
-rw-r--r--updater/blockimg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp
index 4a813b1d8..dd6cf0d96 100644
--- a/updater/blockimg.cpp
+++ b/updater/blockimg.cpp
@@ -1374,7 +1374,7 @@ static Value* PerformBlockImageUpdate(const char* name, State* state, int /* arg
std::vector<std::string> lines = android::base::Split(transfer_list, "\n");
// First line in transfer list is the version number
- if (!android::base::ParseInt(lines[0].c_str(), &params.version, 1, 3)) {
+ if (!android::base::ParseInt(lines[0].c_str(), &params.version, 1, 4)) {
fprintf(stderr, "unexpected transfer list version [%s]\n", lines[0].c_str());
return StringValue(strdup(""));
}