提交 1ff3e6fa 编写于 作者: R Rich Felker

fix typo in exponent reading code or floats

this was basically harmless, but could have resulted in misreading
inputs with more than a few gigabytes worth of digits..
上级 bdeb184c
...@@ -44,7 +44,7 @@ static long long scanexp(FILE *f, int pok) ...@@ -44,7 +44,7 @@ static long long scanexp(FILE *f, int pok)
} }
for (x=0; c-'0'<10U && x<INT_MAX/10; c = shgetc(f)) for (x=0; c-'0'<10U && x<INT_MAX/10; c = shgetc(f))
x = 10*x + c-'0'; x = 10*x + c-'0';
for (y=x; c-'0'<10U && x<LLONG_MAX/100; c = shgetc(f)) for (y=x; c-'0'<10U && y<LLONG_MAX/100; c = shgetc(f))
y = 10*y + c-'0'; y = 10*y + c-'0';
for (; c-'0'<10U; c = shgetc(f)); for (; c-'0'<10U; c = shgetc(f));
shunget(f); shunget(f);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册