mirror of
https://github.com/facebook/zstd
synced 2026-08-22 22:32:07 -04:00
Fix integer parsing in cli (#2003)
This commit is contained in:
parent
ff6350c098
commit
4e728e26ca
1 changed files with 3 additions and 1 deletions
|
|
@ -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')) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue