mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-11-15 19:47:57 +01:00
sway/server: Fix null pointer crash when Xwayland disabled
This commit is contained in:
parent
d952ce403e
commit
8edc48f6dd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue