mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
2003-02-22 Ulrich Drepper <drepper@redhat.com> * stdlib/strtod.c (INTERNAL): Remove bogus clearing of second word when shifting retval. * stdlib/tst-strtod.c (main): Add strtold test case. Reported by Fred J. Tydeman <tydeman@tybor.com>.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
2003-02-22 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* stdlib/strtod.c (INTERNAL): Remove bogus clearing of second word
|
||||||
|
when shifting retval.
|
||||||
|
* stdlib/tst-strtod.c (main): Add strtold test case.
|
||||||
|
Reported by Fred J. Tydeman <tydeman@tybor.com>.
|
||||||
|
|
||||||
2003-02-21 Roland McGrath <roland@redhat.com>
|
2003-02-21 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
* malloc/thread-freeres.c: Conditionalize on _LIBC_REENTRANT.
|
* malloc/thread-freeres.c: Conditionalize on _LIBC_REENTRANT.
|
||||||
|
@ -1472,9 +1472,6 @@ INTERNAL (STRTOF) (nptr, endptr, group LOCALE_PARAM)
|
|||||||
#else
|
#else
|
||||||
for (i = RETURN_LIMB_SIZE; i > empty; --i)
|
for (i = RETURN_LIMB_SIZE; i > empty; --i)
|
||||||
retval[i] = retval[i - empty];
|
retval[i] = retval[i - empty];
|
||||||
#endif
|
|
||||||
#if RETURN_LIMB_SIZE > 1
|
|
||||||
retval[1] = 0;
|
|
||||||
#endif
|
#endif
|
||||||
for (i = numsize; i > 0; --i)
|
for (i = numsize; i > 0; --i)
|
||||||
num[i + empty] = num[i - 1];
|
num[i + empty] = num[i - 1];
|
||||||
|
Reference in New Issue
Block a user