diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-02-07 08:31:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-02-07 08:31:01 +0000 |
commit | 5bfcc4d18228731ffae61fed59321929fb0db76f (patch) | |
tree | 4922bb291f6d9e0b46f5da6847430a5d37217d70 /ChangeLog | |
parent | 55ae3aa64f473f0a410577507d2603dc9e3e7f4c (diff) | |
download | glibc-5bfcc4d18228731ffae61fed59321929fb0db76f.tar glibc-5bfcc4d18228731ffae61fed59321929fb0db76f.tar.gz glibc-5bfcc4d18228731ffae61fed59321929fb0db76f.tar.bz2 glibc-5bfcc4d18228731ffae61fed59321929fb0db76f.zip |
Update.
2001-02-07 Ulrich Drepper <drepper@redhat.com>
* stdlib/strtod.c: Never stop prematurely reading digits before the
decimal point is found. Compute exponent limit for negative exponents
correctly. For numbers ending in all zeros eat the zeroes even before
the decimal point if the exponent is negative [PR libc/2072].
* stdlib/Makefile (tests): Add bug-strtod.
* stdlib/bug-strtod.c: New file.
* posix/regex.c (regex_compile): Don't store pointer in wchar_t array.
Store index.
(compile_range): Handle index being passed, not pointer.
Patch by Isamu Hasegawa <isamu@yamato.ibm.com>.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1,9 +1,23 @@ +2001-02-07 Ulrich Drepper <drepper@redhat.com> + + * stdlib/strtod.c: Never stop prematurely reading digits before the + decimal point is found. Compute exponent limit for negative exponents + correctly. For numbers ending in all zeros eat the zeroes even before + the decimal point if the exponent is negative [PR libc/2072]. + * stdlib/Makefile (tests): Add bug-strtod. + * stdlib/bug-strtod.c: New file. + 2001-02-07 Andreas Jaeger <aj@suse.de> * posix/bug-regex1.c: Include <wchar.h> for fwide. 2001-02-06 Ulrich Drepper <drepper@redhat.com> + * posix/regex.c (regex_compile): Don't store pointer in wchar_t array. + Store index. + (compile_range): Handle index being passed, not pointer. + Patch by Isamu Hasegawa <isamu@yamato.ibm.com>. + * posix/regex.c: Fix a cast in the code for bracket handling which caused 8-bit uncleanliness. Patch by Michal Jaegermann <michal@ellpspace.math.ualberta.ca>. |