Fixed bug 4513 - Wayland, fix crash when remove event is sent (from Sebastian Krzyszkowiak)
diff --git a/src/video/wayland/SDL_waylandvideo.c b/src/video/wayland/SDL_waylandvideo.c
index a315f85..a8bc6e0 100644
--- a/src/video/wayland/SDL_waylandvideo.c
+++ b/src/video/wayland/SDL_waylandvideo.c
@@ -392,9 +392,12 @@ display_handle_global(void *data, struct wl_registry *registry, uint32_t id,
}
}
+static void
+display_remove_global(void *data, struct wl_registry *registry, uint32_t id) {}
+
static const struct wl_registry_listener registry_listener = {
display_handle_global,
- NULL, /* global_remove */
+ display_remove_global
};
int