]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 20 Mar 2003 01:10:57 +0000 (01:10 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 20 Mar 2003 01:10:57 +0000 (01:10 +0000)
* stdlib/strtod.c (INTERNAL): While eating trailing zeros handling
hexdigits correctly.  Reported by Fred Tydeman <tydeman@tybor.com>.
* stdlib/tst-strtod.c: Add test for the bug.

ChangeLog
stdlib/tst-strtod.c

index f52d2e693651d87f79a8a472cf0bac505f304b8e..1adf4cb4f542b4b4c092e5c71009026afb1d8725 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,10 @@
 
 2003-03-19  Ulrich Drepper  <drepper@redhat.com>
 
+       * stdlib/strtod.c (INTERNAL): While eating trailing zeros handling
+       hexdigits correctly.  Reported by Fred Tydeman <tydeman@tybor.com>.
+       * stdlib/tst-strtod.c: Add test for the bug.
+
        * posix/tst-nice.c (do_test): Remove invalid of return value.
        Don't run test if initial level != 0.
 
index cf5533da3ed14dd590a5dccf91b7aeea0909bfec..c466e0fb77edaa412ff6faef660525fdb75e08bb 100644 (file)
@@ -71,6 +71,7 @@ static const struct ltest tests[] =
     { "-Inf", -HUGE_VAL, '\0', 0 },
     { "+InFiNiTy", HUGE_VAL, '\0', 0 },
 #endif
+    { "0x80000Ap-23", 0x80000Ap-23, '\0', 0 },
     { NULL, 0, '\0', 0 }
   };
 
This page took 0.044171 seconds and 5 git commands to generate.