Fix integer parsing in cli (#2003)

This commit is contained in:
Philip Jones 2020-02-18 15:30:59 -08:00 committed by GitHub
parent ff6350c098
commit 4e728e26ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -254,10 +254,12 @@ static int readU32FromCharChecked(const char** stringPtr, unsigned* value)
{
unsigned result = 0;
while ((**stringPtr >='0') && (**stringPtr <='9')) {
unsigned const max = (((unsigned)(-1)) / 10) - 1;
unsigned const max = ((unsigned)(-1)) / 10;
unsigned last = result;
if (result > max) return 1; /* overflow error */
result *= 10;
result += (unsigned)(**stringPtr - '0');
if (result < last) return 1; /* overflow error */
(*stringPtr)++ ;
}
if ((**stringPtr=='K') || (**stringPtr=='M')) {