mirror of
https://github.com/fluencelabs/musl
synced 2025-06-17 00:41:45 +00:00
fix failure to read infinity in scanf
this code worked in strtod, but not in scanf. more evidence that i should design a better interface for discarding multiple tail characters than just calling unget repeatedly...
This commit is contained in:
@ -428,9 +428,10 @@ long double __floatscan(FILE *f, int c, int prec, int pok)
|
|||||||
for (i=0; i<8 && (c|32)=="infinity"[i]; i++)
|
for (i=0; i<8 && (c|32)=="infinity"[i]; i++)
|
||||||
if (i<7) c = shgetc(f);
|
if (i<7) c = shgetc(f);
|
||||||
if (i==3 || i==8 || (i>3 && pok)) {
|
if (i==3 || i==8 || (i>3 && pok)) {
|
||||||
if (i==3) shunget(f);
|
if (i!=8) {
|
||||||
|
shunget(f);
|
||||||
if (pok) for (; i>3; i--) shunget(f);
|
if (pok) for (; i>3; i--) shunget(f);
|
||||||
else shlim(f, 0);
|
}
|
||||||
return sign * INFINITY;
|
return sign * INFINITY;
|
||||||
}
|
}
|
||||||
if (!i) for (i=0; i<3 && (c|32)=="nan"[i]; i++)
|
if (!i) for (i=0; i<3 && (c|32)=="nan"[i]; i++)
|
||||||
|
Reference in New Issue
Block a user