summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Cherry <tomcherry@google.com>2018-10-07 19:31:34 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-10-07 19:31:34 +0200
commit1a4d234daa26f3954633fd55037193f2827fb36c (patch)
treeb9d7b398741c974cae1ab3cc4a026b9a95a0d07c
parentMerge "Compare the fingerprint before reading the partition" (diff)
parentUse only signed/unsigned numbers with ParseInt/ParseUint respectively (diff)
downloadandroid_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar
android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar.gz
android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar.bz2
android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar.lz
android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar.xz
android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar.zst
android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.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 838845673..47849a155 100644
--- a/updater/blockimg.cpp
+++ b/updater/blockimg.cpp
@@ -109,7 +109,7 @@ static bool ParseLastCommandFile(size_t* last_command_index) {
return false;
}
- if (!android::base::ParseInt(lines[0], last_command_index)) {
+ if (!android::base::ParseUint(lines[0], last_command_index)) {
LOG(ERROR) << "Failed to parse integer in: " << lines[0];
return false;
}