d30235b5b6
* After starting Thunderbird, the message list position was sometimes set to an incorrect position MFSA 2024-30 (bsc#1226316) * CVE-2024-6600 (bmo#1888340) Memory corruption in WebGL API * CVE-2024-6601 (bmo#1890748) Race condition in permission assignment * CVE-2024-6602 (bmo#1895032) Memory corruption in NSS * CVE-2024-6603 (bmo#1895081) Memory corruption in thread creation * CVE-2024-6604 (bmo#1748105, bmo#1837550, bmo#1884266) Memory safety bugs fixed in Firefox 128, Firefox ESR 115.13, and Thunderbird 115.13 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=765
26 lines
899 B
Diff
26 lines
899 B
Diff
# HG changeset patch
|
|
# Parent 60fc1933af9d4f1769025a6f1d9a60db6b899315
|
|
|
|
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
|
|
@@ -36,16 +36,18 @@ static const char* sLibs[] = {
|
|
"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.60",
|
|
"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",
|