summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-11-19 09:31:58 +0100
committerMartin Stransky <stransky@redhat.com>2021-11-19 09:31:58 +0100
commit3bb9b0700925dc0d71b1b7695ebc8ad8c1230343 (patch)
tree2afef1fbda26c18d16876a49dae087f6570b8c30
parentDisable aarch64 due to build failures bugzilla.redhat.com/show_bug.cgi?id=201... (diff)
downloadlibrewolf-fedora-ff-3bb9b0700925dc0d71b1b7695ebc8ad8c1230343.tar.gz
librewolf-fedora-ff-3bb9b0700925dc0d71b1b7695ebc8ad8c1230343.tar.bz2
librewolf-fedora-ff-3bb9b0700925dc0d71b1b7695ebc8ad8c1230343.zip
Added fix for mozbz#1739924 / rhbz#2020981
-rw-r--r--firefox.spec7
-rw-r--r--mozilla-1739924.patch27
2 files changed, 33 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index 4e80db0..0bd96f3 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -163,7 +163,7 @@ ExcludeArch: aarch64
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 94.0
-Release: 1%{?pre_tag}%{?dist}
+Release: 2%{?pre_tag}%{?dist}
URL: https://www.mozilla.org/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Source0: https://archive.mozilla.org/pub/firefox/releases/%{version}%{?pre_version}/source/firefox-%{version}%{?pre_version}.source.tar.xz
@@ -243,6 +243,7 @@ Patch407: mozilla-1667096.patch
Patch408: mozilla-1663844.patch
Patch415: mozilla-1670333.patch
Patch420: mochitest-wayland-workaround.patch
+Patch421: mozilla-1739924.patch
# PGO/LTO patches
Patch600: pgo.patch
@@ -483,6 +484,7 @@ This package contains results of tests executed during build.
%patch408 -p1 -b .1663844
%patch415 -p1 -b .1670333
%patch420 -p1 -b .mochitest-wayland-workaround
+%patch421 -p1 -b .1739924
# PGO patches
%if %{build_with_pgo}
@@ -1052,6 +1054,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Fri Nov 19 2021 Martin Stransky <stransky@redhat.com> - 94.0-2
+- Added fix for mozbz#1739924 / rhbz#2020981.
+
* Mon Nov 1 2021 Martin Stransky <stransky@redhat.com> - 94.0-1
- Updated to 94.0
diff --git a/mozilla-1739924.patch b/mozilla-1739924.patch
new file mode 100644
index 0000000..3cac2ee
--- /dev/null
+++ b/mozilla-1739924.patch
@@ -0,0 +1,27 @@
+diff --git a/widget/gtk/DMABufSurface.cpp b/widget/gtk/DMABufSurface.cpp
+--- a/widget/gtk/DMABufSurface.cpp
++++ b/widget/gtk/DMABufSurface.cpp
+@@ -204,17 +204,17 @@
+ }
+
+ void DMABufSurface::FenceDelete() {
++ if (mSyncFd > 0) {
++ close(mSyncFd);
++ mSyncFd = -1;
++ }
++
+ if (!mGL) {
+ return;
+ }
+ const auto& gle = gl::GLContextEGL::Cast(mGL);
+ const auto& egl = gle->mEgl;
+
+- if (mSyncFd > 0) {
+- close(mSyncFd);
+- mSyncFd = -1;
+- }
+-
+ if (mSync) {
+ egl->fDestroySync(mSync);
+ mSync = nullptr;
+
bgstack15