forked from pool/MozillaFirefox
c9ea1238e9
MFSA 2022-47 (bsc#1205270) * CVE-2022-45403 (bmo#1762078) Service Workers might have learned size of cross-origin media files * CVE-2022-45404 (bmo#1790815) Fullscreen notification bypass * CVE-2022-45405 (bmo#1791314) Use-after-free in InputStream implementation * CVE-2022-45406 (bmo#1791975) Use-after-free of a JavaScript Realm * CVE-2022-45407 (bmo#1793314) Loading fonts on workers was not thread-safe * CVE-2022-45408 (bmo#1793829) Fullscreen notification bypass via windowName * CVE-2022-45409 (bmo#1796901) Use-after-free in Garbage Collection * CVE-2022-45410 (bmo#1658869) ServiceWorker-intercepted requests bypassed SameSite cookie policy * CVE-2022-45411 (bmo#1790311) Cross-Site Tracing was possible via non-standard override headers * CVE-2022-45412 (bmo#1791029) Symlinks may resolve to partially uninitialized buffers * CVE-2022-45413 (bmo#1791201) SameSite=Strict cookies could have been sent cross-site via intent URLs * CVE-2022-40674 (bmo#1791598) Use-after-free vulnerability in expat * CVE-2022-45415 (bmo#1793551) Downloaded file may have been saved with malicious extension * CVE-2022-45416 (bmo#1793676) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=1019
34 lines
1021 B
Diff
34 lines
1021 B
Diff
# HG changeset patch
|
|
# User Wolfgang Rosenauer <wr@rosenauer.org>
|
|
# Parent fa8a5832a374ccd7af5db927b992b5d9f15273ef
|
|
|
|
diff --git a/modules/fdlibm/src/math_private.h b/modules/fdlibm/src/math_private.h
|
|
--- a/modules/fdlibm/src/math_private.h
|
|
+++ b/modules/fdlibm/src/math_private.h
|
|
@@ -25,19 +25,24 @@
|
|
|
|
#include "fdlibm.h"
|
|
|
|
/*
|
|
* Emulate FreeBSD internal double types.
|
|
* Adapted from https://github.com/freebsd/freebsd-src/search?q=__double_t
|
|
*/
|
|
|
|
+#ifdef __i386__
|
|
+typedef long double __double_t;
|
|
+typedef long double __float_t;
|
|
+#else
|
|
typedef double __double_t;
|
|
+typedef float __float_t;
|
|
+#endif
|
|
typedef __double_t double_t;
|
|
-typedef float __float_t;
|
|
|
|
/*
|
|
* The original fdlibm code used statements like:
|
|
* n0 = ((*(int*)&one)>>29)^1; * index of high word *
|
|
* ix0 = *(n0+(int*)&x); * high word of x *
|
|
* ix1 = *((1-n0)+(int*)&x); * low word of x *
|
|
* to dig two 32 bit words out of the 64 bit IEEE floating point
|
|
* value. That is non-ANSI, and, moreover, the gcc instruction
|