d78e635d11
* Firefox 84 is the final release to support Adobe Flash * WebRender is enabled by default when run on GNOME-based X11 Linux desktops MFSA 2020-54 (bsc#1180039)) * CVE-2020-16042 (bmo#1679003) Operations on a BigInt could have caused uninitialized memory to be exposed * CVE-2020-26971 (bmo#1663466) Heap buffer overflow in WebGL * CVE-2020-26972 (bmo#1671382) Use-After-Free in WebGL * CVE-2020-26973 (bmo#1680084) CSS Sanitizer performed incorrect sanitization * CVE-2020-26974 (bmo#1681022) Incorrect cast of StyleGenericFlexBasis resulted in a heap use-after-free * CVE-2020-26975 (bmo#1661071) Malicious applications on Android could have induced Firefox for Android into sending arbitrary attacker-specified headers * CVE-2020-26976 (bmo#1674343) HTTPS pages could have been intercepted by a registered service worker when they should not have been * CVE-2020-26977 (bmo#1676311) URL spoofing via unresponsive port in Firefox for Android * CVE-2020-26978 (bmo#1677047) Internal network hosts could have been probed by a malicious webpage * CVE-2020-26979 (bmo#1641287, bmo#1673299) When entering an address in the address or search bars, a OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=880
55 lines
1.8 KiB
Diff
55 lines
1.8 KiB
Diff
# HG changeset patch
|
|
# Parent f9f5af4c88f2f3172a4f30d7e42bd2131bf24146
|
|
This fixes a broken build for gcc < 9 on ppc64le.
|
|
This patch can be removed for newer gcc-versions.
|
|
|
|
diff --git a/js/xpconnect/src/XPCWrappedNative.cpp b/js/xpconnect/src/XPCWrappedNative.cpp
|
|
--- a/js/xpconnect/src/XPCWrappedNative.cpp
|
|
+++ b/js/xpconnect/src/XPCWrappedNative.cpp
|
|
@@ -1072,17 +1072,21 @@ class MOZ_STACK_CLASS CallMethodHelper f
|
|
uint32_t* result);
|
|
|
|
MOZ_ALWAYS_INLINE bool GetInterfaceTypeFromParam(const nsXPTType& type,
|
|
nsID* result) const;
|
|
|
|
MOZ_ALWAYS_INLINE bool GetOutParamSource(uint8_t paramIndex,
|
|
MutableHandleValue srcp) const;
|
|
|
|
- MOZ_ALWAYS_INLINE bool GatherAndConvertResults();
|
|
+#if !(__GNUC__ && __linux__ && __PPC64__ && _LITTLE_ENDIAN)
|
|
+// Work around a compiler bug on ppc64le (bug 1512162).
|
|
+ MOZ_ALWAYS_INLINE
|
|
+#endif
|
|
+ bool GatherAndConvertResults();
|
|
|
|
MOZ_ALWAYS_INLINE bool QueryInterfaceFastPath();
|
|
|
|
nsXPTCVariant* GetDispatchParam(uint8_t paramIndex) {
|
|
if (paramIndex >= mJSContextIndex) {
|
|
paramIndex += 1;
|
|
}
|
|
if (paramIndex >= mOptArgcIndex) {
|
|
@@ -1119,17 +1123,21 @@ class MOZ_STACK_CLASS CallMethodHelper f
|
|
|
|
{
|
|
// Success checked later.
|
|
mIFaceInfo->GetMethodInfo(mVTableIndex, &mMethodInfo);
|
|
}
|
|
|
|
~CallMethodHelper();
|
|
|
|
- MOZ_ALWAYS_INLINE bool Call();
|
|
+#if !(__GNUC__ && __linux__ && __PPC64__ && _LITTLE_ENDIAN)
|
|
+// Work around a compiler bug on ppc64le (bug 1512162).
|
|
+ MOZ_ALWAYS_INLINE
|
|
+#endif
|
|
+ bool Call();
|
|
|
|
// Trace implementation so we can put our CallMethodHelper in a Rooted<T>.
|
|
void trace(JSTracer* aTrc);
|
|
};
|
|
|
|
// static
|
|
bool XPCWrappedNative::CallMethod(XPCCallContext& ccx,
|
|
CallMode mode /*= CALL_METHOD */) {
|