summaryrefslogtreecommitdiff
path: root/mozilla-1739924.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-11-25 10:22:35 +0100
committerMartin Stransky <stransky@redhat.com>2021-11-25 10:22:35 +0100
commit9d731f880f50e19e81ee1d9ffdad314e59e23a1a (patch)
tree11ba4b2b1553ada31ebba83f8c50e431f5cefc13 /mozilla-1739924.patch
parentAdded fix for mozbz#1739924 / rhbz#2020981 (diff)
downloadlibrewolf-fedora-ff-9d731f880f50e19e81ee1d9ffdad314e59e23a1a.tar.gz
librewolf-fedora-ff-9d731f880f50e19e81ee1d9ffdad314e59e23a1a.tar.bz2
librewolf-fedora-ff-9d731f880f50e19e81ee1d9ffdad314e59e23a1a.zip
Updated to 92.0.2
Diffstat (limited to 'mozilla-1739924.patch')
-rw-r--r--mozilla-1739924.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/mozilla-1739924.patch b/mozilla-1739924.patch
deleted file mode 100644
index 3cac2ee..0000000
--- a/mozilla-1739924.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-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