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:
Corinna Vinschen 2008-03-04 19:17:26 +00:00
parent badea50574
commit 7afca6d35b
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;
}