mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 06:32:05 +03:00
fix signed overflows at most-negative values in ato(i|l|ll)
patch by Pascal Cuoq (with minor tweaks to comments)
This commit is contained in:
parent
3ed8c9f2df
commit
0c4188f6d7
@ -9,7 +9,8 @@ int atoi(const char *s)
|
|||||||
case '-': neg=1;
|
case '-': neg=1;
|
||||||
case '+': s++;
|
case '+': s++;
|
||||||
}
|
}
|
||||||
|
/* Compute n as a negative number to avoid overflow on INT_MIN */
|
||||||
while (isdigit(*s))
|
while (isdigit(*s))
|
||||||
n = 10*n + *s++ - '0';
|
n = 10*n - (*s++ - '0');
|
||||||
return neg ? -n : n;
|
return neg ? n : -n;
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,8 @@ long atol(const char *s)
|
|||||||
case '-': neg=1;
|
case '-': neg=1;
|
||||||
case '+': s++;
|
case '+': s++;
|
||||||
}
|
}
|
||||||
|
/* Compute n as a negative number to avoid overflow on LONG_MIN */
|
||||||
while (isdigit(*s))
|
while (isdigit(*s))
|
||||||
n = 10*n + *s++ - '0';
|
n = 10*n - (*s++ - '0');
|
||||||
return neg ? -n : n;
|
return neg ? n : -n;
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,8 @@ long long atoll(const char *s)
|
|||||||
case '-': neg=1;
|
case '-': neg=1;
|
||||||
case '+': s++;
|
case '+': s++;
|
||||||
}
|
}
|
||||||
|
/* Compute n as a negative number to avoid overflow on LLONG_MIN */
|
||||||
while (isdigit(*s))
|
while (isdigit(*s))
|
||||||
n = 10*n + *s++ - '0';
|
n = 10*n - (*s++ - '0');
|
||||||
return neg ? -n : n;
|
return neg ? n : -n;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user