Fix strtod("nan()", ptr).

* libc/stdlib/gdtoa-hexnan.c (hexnan): When the optional
n-char-sequence is omitted, still parse the ().
-------------------------------------------------------------------
This commit is contained in:
Eric Blake 2008-03-04 18:27:01 +00:00
parent 4d35ce4351
commit beb0ab6466
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-03-04 Eric Blake <ebb9@byu.net>
Fix strtod("nan()", ptr).
* libc/stdlib/gdtoa-hexnan.c (hexnan): When the optional
n-char-sequence is omitted, still parse the ().
2008-03-03 Eric Blake <ebb9@byu.net>
Fix ftell bug after ungetc.

View File

@ -98,7 +98,7 @@ _DEFUN (hexnan, (sp, fpi, x0),
}
continue;
}
if (/*(*/ c == ')' && havedig) {
if (/*(*/ c == ')') {
*sp = s + 1;
break;
}