summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2013-06-18 16:53:46 -0400
committerKristian Høgsberg <krh@bitplanet.net>2013-06-18 17:45:19 -0400
commit712269d6744a8849d1d0cf01fa0132d969b79ed4 (patch)
treeafe38b84110e6d786ec92f1b1ac7ff1670412e4c /src
parentadeda5afd428e2e4a2c0ef0b6367956d94c4d054 (diff)
downloadexternal_mesa3d-712269d6744a8849d1d0cf01fa0132d969b79ed4.zip
external_mesa3d-712269d6744a8849d1d0cf01fa0132d969b79ed4.tar.gz
external_mesa3d-712269d6744a8849d1d0cf01fa0132d969b79ed4.tar.bz2
wayland: Handle global_remove event as well
We need to set up a handler for the global_remove event that gets sent out when a global gets removed. Without the handler we end up calling a NULL pointer. https://bugs.freedesktop.org/show_bug.cgi?id=65910 NOTE: This is a candidate for the stable branches. Signed-off-by: Kristian Høgsberg <krh@bitplanet.net>
Diffstat (limited to 'src')
-rw-r--r--src/egl/drivers/dri2/platform_wayland.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/egl/drivers/dri2/platform_wayland.c b/src/egl/drivers/dri2/platform_wayland.c
index b5523be..1d417bb 100644
--- a/src/egl/drivers/dri2/platform_wayland.c
+++ b/src/egl/drivers/dri2/platform_wayland.c
@@ -715,8 +715,15 @@ registry_handle_global(void *data, struct wl_registry *registry, uint32_t name,
}
}
+static void
+registry_handle_global_remove(void *data, struct wl_registry *registry,
+ uint32_t name)
+{
+}
+
static const struct wl_registry_listener registry_listener = {
- registry_handle_global
+ registry_handle_global,
+ registry_handle_global_remove
};
EGLBoolean