Merge "Use only signed/unsigned numbers with ParseInt/ParseUint respectively"
am: 1a4d234daa
Change-Id: I35a0d3de7dfafe382fbe203c3e7d74c1ea09ef26
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user