[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r2859 - in glibc-package/trunk/debian: . patches patches/any



Author: aurel32
Date: 2008-03-09 12:50:46 +0000 (Sun, 09 Mar 2008)
New Revision: 2859

Added:
   glibc-package/trunk/debian/patches/any/cvs-strtod.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
  * patches/any/cvs-strtod.diff: new patch from CVS to fix strtod().  Closes:
    #465769.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2008-03-08 23:13:04 UTC (rev 2858)
+++ glibc-package/trunk/debian/changelog	2008-03-09 12:50:46 UTC (rev 2859)
@@ -21,6 +21,8 @@
   * patches/all/cvs-gai_conf.diff: update gai.conf from CVS to also mention
     Teredo tunnels and scopev4 defaults.
   * sysdeps/mips.mk, sysdeps/mipsel.mk: define TIMEOUTFACTOR.
+  * patches/any/cvs-strtod.diff: new patch from CVS to fix strtod().  Closes:
+    #465769.
 
   [ Samuel Thibault ]
   * patches/hurd-i386/cvs-blocked-exceptions.diff: new patch to dump
@@ -28,7 +30,7 @@
   * patches/hurd-i386/cvs-df.diff: new patch to clear DF for signal
     handlers (Closes: #470021).
 
- -- Aurelien Jarno <aurel32@debian.org>  Thu, 06 Mar 2008 22:05:10 +0100
+ -- Aurelien Jarno <aurel32@debian.org>  Sun, 09 Mar 2008 13:48:43 +0100
 
 glibc (2.7-9) unstable; urgency=low
 

Added: glibc-package/trunk/debian/patches/any/cvs-strtod.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/cvs-strtod.diff	                        (rev 0)
+++ glibc-package/trunk/debian/patches/any/cvs-strtod.diff	2008-03-09 12:50:46 UTC (rev 2859)
@@ -0,0 +1,20 @@
+commit e76c47eeb75382c25d232e97a2eba88b5ae2c046
+Author: Ulrich Drepper <drepper@redhat.com>
+Date:   Sat Mar 8 21:31:55 2008 +0000
+
+    (____STRTOF_INTERNAL): Consume closing brace on NAN(...) sequence.
+
+diff --git a/stdlib/strtod_l.c b/stdlib/strtod_l.c
+index d1c2b62..9c2f86a 100644
+--- a/stdlib/strtod_l.c
++++ b/stdlib/strtod_l.c
+@@ -594,6 +594,9 @@ ____STRTOF_INTERNAL (nptr, endptr, group, loc)
+ 		  mant = STRTOULL (startp + 1, &endp, 0);
+ 		  if (endp == cp)
+ 		    SET_MANTISSA (retval, mant);
++
++		  /* Consume the closing brace.  */
++		  ++cp;
+ 		}
+ 	    }
+ 

Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series	2008-03-08 23:13:04 UTC (rev 2858)
+++ glibc-package/trunk/debian/patches/series	2008-03-09 12:50:46 UTC (rev 2859)
@@ -135,6 +135,7 @@
 any/cvs-iconv-iso2022jp-loop-bug.diff
 any/cvs-rfc3484.diff -p1
 any/cvs-sched_h.diff -p0
+any/cvs-strtod.diff -p1
 any/cvs-tzfile.diff -p1
 any/cvs-vfscanf.diff -p0
 any/cvs-wchar_h.diff -p0


Reply to: