aded881413
* You can now disable automatic opening of the download panel every time a new download starts * Firefox now mitigates query parameter tracking when navigating sites in ETP strict mode * Improved security by moving audio decoding into a separate process with stricter sandboxing, thus improving process isolation * https://www.mozilla.org/en-US/firefox/102.0/releasenotes MFSA 2022-24 (bsc#1200793) * CVE-2022-34479 (bmo#1745595) A popup window could be resized in a way to overlay the address bar with web content * CVE-2022-34470 (bmo#1765951) Use-after-free in nsSHistory * CVE-2022-34468 (bmo#1768537) CSP sandbox header without `allow-scripts` can be bypassed via retargeted javascript: URI * CVE-2022-34482 (bmo#845880) Drag and drop of malicious image could have led to malicious executable and potential code execution * CVE-2022-34483 (bmo#1335845) Drag and drop of malicious image could have led to malicious executable and potential code execution * CVE-2022-34476 (bmo#1387919) ASN.1 parser could have been tricked into accepting malformed ASN.1 * CVE-2022-34481 (bmo#1483699, bmo#1497246) Potential integer overflow in ReplaceElementsAt * CVE-2022-34474 (bmo#1677138) Sandboxed iframes could redirect to external schemes * CVE-2022-34469 (bmo#1721220) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=983
26 lines
902 B
Diff
26 lines
902 B
Diff
# HG changeset patch
|
|
# Parent 63747fd31719c6e4f7810512a3c57e75a02b8bfd
|
|
|
|
diff --git a/dom/media/platforms/ffmpeg/FFmpegRuntimeLinker.cpp b/dom/media/platforms/ffmpeg/FFmpegRuntimeLinker.cpp
|
|
--- a/dom/media/platforms/ffmpeg/FFmpegRuntimeLinker.cpp
|
|
+++ b/dom/media/platforms/ffmpeg/FFmpegRuntimeLinker.cpp
|
|
@@ -34,16 +34,18 @@ static const char* sLibs[] = {
|
|
"libavcodec.55.dylib",
|
|
"libavcodec.54.dylib",
|
|
"libavcodec.53.dylib",
|
|
#elif defined(XP_OPENBSD)
|
|
"libavcodec.so", // OpenBSD hardly controls the major/minor library version
|
|
// of ffmpeg and update it regulary on ABI/API changes
|
|
#else
|
|
"libavcodec.so.59",
|
|
+ "libavcodec.so.58.134",
|
|
+ "libavcodec.so.58.91",
|
|
"libavcodec.so.58",
|
|
"libavcodec-ffmpeg.so.58",
|
|
"libavcodec-ffmpeg.so.57",
|
|
"libavcodec-ffmpeg.so.56",
|
|
"libavcodec.so.57",
|
|
"libavcodec.so.56",
|
|
"libavcodec.so.55",
|
|
"libavcodec.so.54",
|