1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-08 02:26:06 +02:00

sway/server: Fix null pointer crash when Xwayland disabled

This commit is contained in:
Manuel Stoeckl 2023-09-09 17:02:55 -04:00 committed by Simon Ser
parent d952ce403e
commit 8edc48f6dd

View File

@ -78,7 +78,7 @@ static bool filter_global(const struct wl_client *client,
const struct wl_global *global, void *data) {
#if HAVE_XWAYLAND
struct wlr_xwayland *xwayland = server.xwayland.wlr_xwayland;
if (global == xwayland->shell_v1->global) {
if (xwayland && global == xwayland->shell_v1->global) {
return xwayland->server != NULL && client == xwayland->server->client;
}
#endif