summaryrefslogtreecommitdiff
path: root/queue-crash.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2018-03-06 15:06:38 +0100
committerMartin Stransky <stransky@redhat.com>2018-03-06 15:06:38 +0100
commit3aea3055e85d7f367ec5b1347c5b96898e237fd2 (patch)
tree75af62695ed1ca614a5d67293e4561572146995e /queue-crash.patch
parentMerged with firefox-59 (diff)
downloadlibrewolf-fedora-ff-3aea3055e85d7f367ec5b1347c5b96898e237fd2.tar.gz
librewolf-fedora-ff-3aea3055e85d7f367ec5b1347c5b96898e237fd2.tar.bz2
librewolf-fedora-ff-3aea3055e85d7f367ec5b1347c5b96898e237fd2.zip
Removed unused wayland patches
Diffstat (limited to 'queue-crash.patch')
-rw-r--r--queue-crash.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/queue-crash.patch b/queue-crash.patch
deleted file mode 100644
index 962fce9..0000000
--- a/queue-crash.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/widget/gtk/WindowSurfaceWayland.cpp b/widget/gtk/WindowSurfaceWayland.cpp
---- a/widget/gtk/WindowSurfaceWayland.cpp
-+++ b/widget/gtk/WindowSurfaceWayland.cpp
-@@ -268,17 +268,21 @@ nsWaylandDisplay::GetShm()
-
- if (!mShm) {
- // wl_shm is not provided by Gtk so we need to query wayland directly
- // See weston/simple-shm.c and create_display() for reference.
- wl_registry* registry = wl_display_get_registry(mDisplay);
- wl_registry_add_listener(registry, &registry_listener, this);
-
- wl_proxy_set_queue((struct wl_proxy *)registry, mEventQueue);
-- wl_display_roundtrip_queue(mDisplay, mEventQueue);
-+ if (mEventQueue) {
-+ wl_display_roundtrip_queue(mDisplay, mEventQueue);
-+ } else {
-+ wl_display_roundtrip(mDisplay);
-+ }
-
- MOZ_RELEASE_ASSERT(mShm, "Wayland registry query failed!");
- }
-
- return(mShm);
- }
-
- bool
bgstack15