5b108142b5
- Update to glibc 2.18 release * No source change - strcoll-overflow.patch: fix buffer overflow in strcoll (CVE-2012-4412, bnc#779320) - readdir_r-overflow.patch: fix readdir_r with long file names (CVE-2013-4237, bnc#834594) (forwarded request 186872 from Andreas_Schwab) OBS-URL: https://build.opensuse.org/request/show/186878 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/glibc?expand=0&rev=153
18 lines
591 B
Diff
18 lines
591 B
Diff
[BZ #15749]
|
|
* sysdeps/ieee754/ldbl-96/s_cbrtl.c (__cbrtl): Use fabsl instead
|
|
of fabs.
|
|
|
|
Index: glibc-2.17.90/sysdeps/ieee754/ldbl-96/s_cbrtl.c
|
|
===================================================================
|
|
--- glibc-2.17.90.orig/sysdeps/ieee754/ldbl-96/s_cbrtl.c
|
|
+++ glibc-2.17.90/sysdeps/ieee754/ldbl-96/s_cbrtl.c
|
|
@@ -45,7 +45,7 @@ __cbrtl (long double x)
|
|
int xe;
|
|
|
|
/* Reduce X. XM now is an range 1.0 to 0.5. */
|
|
- xm = __frexpl (fabs (x), &xe);
|
|
+ xm = __frexpl (fabsl (x), &xe);
|
|
|
|
/* If X is not finite or is null return it (with raising exceptions
|
|
if necessary.
|