mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix failure of int parser to unget an initial mismatching character
This commit is contained in:
parent
99fbf4cfdb
commit
bb477f9fd4
1 changed files with 1 additions and 0 deletions
|
@ -54,6 +54,7 @@ unsigned long long __intscan(FILE *f, unsigned base, int pok, unsigned long long
|
|||
} else {
|
||||
if (base == 0) base = 10;
|
||||
if (val[c] >= base) {
|
||||
shunget(f);
|
||||
shlim(f, 0);
|
||||
errno = EINVAL;
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue