f8e817275d
* MFSA 2012-57/CVE-2012-1970 Miscellaneous memory safety hazards * MFSA 2012-58/CVE-2012-1972/CVE-2012-1973/CVE-2012-1974/CVE-2012-1975 CVE-2012-1976/CVE-2012-3956/CVE-2012-3957/CVE-2012-3958/CVE-2012-3959 CVE-2012-3960/CVE-2012-3961/CVE-2012-3962/CVE-2012-3963/CVE-2012-3964 Use-after-free issues found using Address Sanitizer * MFSA 2012-59/CVE-2012-1956 (bmo#756719) Location object can be shadowed using Object.defineProperty * MFSA 2012-61/CVE-2012-3966 (bmo#775794, bmo#775793) Memory corruption with bitmap format images with negative height * MFSA 2012-62/CVE-2012-3967/CVE-2012-3968 WebGL use-after-free and memory corruption * MFSA 2012-63/CVE-2012-3969/CVE-2012-3970 SVG buffer overflow and use-after-free issues * MFSA 2012-64/CVE-2012-3971 Graphite 2 memory corruption * MFSA 2012-65/CVE-2012-3972 (bmo#746855) Out-of-bounds read in format-number in XSLT * MFSA 2012-68/CVE-2012-3975 (bmo#770684) DOMParser loads linked resources in extensions when parsing text/html * MFSA 2012-70/CVE-2012-3978 (bmo#770429) Location object security checks bypassed by chrome code * MFSA 2012-72/CVE-2012-3980 (bmo#771859) Web console eval capable of executing chrome-privileged code - update Enigmail to 1.4.4 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=189
28 lines
805 B
Diff
28 lines
805 B
Diff
# HG changeset patch
|
|
# User Adrian Schröter <adrian@suse.de>
|
|
# Parent 5b26dbfe65bd4986ea3792f02bc025fec293b51f
|
|
disable ESDP support (no BNC or BMO reference yet :-()
|
|
|
|
diff --git a/xpcom/glue/arm.h b/xpcom/glue/arm.h
|
|
--- a/xpcom/glue/arm.h
|
|
+++ b/xpcom/glue/arm.h
|
|
@@ -143,17 +143,17 @@ namespace mozilla {
|
|
extern bool NS_COM_GLUE neon_enabled;
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
#if defined(MOZILLA_PRESUME_EDSP)
|
|
# define MOZILLA_MAY_SUPPORT_EDSP 1
|
|
inline bool supports_edsp() { return true; }
|
|
-#elif defined(MOZILLA_MAY_SUPPORT_EDSP) \
|
|
+#elif 0 \
|
|
&& defined(MOZILLA_ARM_HAVE_CPUID_DETECTION)
|
|
inline bool supports_edsp() { return arm_private::edsp_enabled; }
|
|
#else
|
|
inline bool supports_edsp() { return false; }
|
|
#endif
|
|
|
|
#if defined(MOZILLA_PRESUME_ARMV6)
|
|
# define MOZILLA_MAY_SUPPORT_ARMV6 1
|