mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Fix segfault when xwayland is disabled
This commit is contained in:
parent
10f3be7384
commit
632759a499
1 changed files with 6 additions and 2 deletions
|
@ -58,8 +58,12 @@ int main(int argc, char **argv) {
|
|||
#ifndef HAS_XWAYLAND
|
||||
ready(NULL, NULL);
|
||||
#else
|
||||
struct wl_listener xwayland_ready = { .notify = ready };
|
||||
wl_signal_add(&server.desktop->xwayland->events.ready, &xwayland_ready);
|
||||
if (server.desktop->xwayland != NULL) {
|
||||
struct wl_listener xwayland_ready = { .notify = ready };
|
||||
wl_signal_add(&server.desktop->xwayland->events.ready, &xwayland_ready);
|
||||
} else {
|
||||
ready(NULL, NULL);
|
||||
}
|
||||
#endif
|
||||
|
||||
wl_display_run(server.wl_display);
|
||||
|
|
Loading…
Reference in a new issue