mirror of https://github.com/encounter/SDL.git
Fixed bug 4513 - Wayland, fix crash when remove event is sent (from Sebastian Krzyszkowiak)
This commit is contained in:
parent
052b4f2969
commit
cddb285cdb
|
@ -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 = {
|
static const struct wl_registry_listener registry_listener = {
|
||||||
display_handle_global,
|
display_handle_global,
|
||||||
NULL, /* global_remove */
|
display_remove_global
|
||||||
};
|
};
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in New Issue