diff options
author | Vincent Vanlaer <vincent.vanlaer@skynet.be> | 2018-05-10 01:44:17 +0200 |
---|---|---|
committer | Vincent Vanlaer <vincent.vanlaer@skynet.be> | 2018-05-10 01:44:17 +0200 |
commit | 72a75b3a72ca79f0045b43b1ba11feda08a8de3b (patch) | |
tree | 6d5074dd54781a4114bf97b9bb9a684455430db5 /xwayland/xwayland.c | |
parent | f520dd8fac7a92ebe8dc2fc678a2690692ae6252 (diff) |
Fix Xwayland cleanup
Fixes #964
Diffstat (limited to 'xwayland/xwayland.c')
-rw-r--r-- | xwayland/xwayland.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/xwayland/xwayland.c b/xwayland/xwayland.c index 22d5cdeb..51035f0e 100644 --- a/xwayland/xwayland.c +++ b/xwayland/xwayland.c @@ -133,6 +133,13 @@ static void xwayland_finish_server(struct wlr_xwayland *wlr_xwayland) { return; } + if (wlr_xwayland->x_fd_read_event[0]) { + wl_event_source_remove(wlr_xwayland->x_fd_read_event[0]); + wl_event_source_remove(wlr_xwayland->x_fd_read_event[1]); + + wlr_xwayland->x_fd_read_event[0] = wlr_xwayland->x_fd_read_event[1] = NULL; + } + if (wlr_xwayland->cursor != NULL) { free(wlr_xwayland->cursor); } @@ -162,6 +169,10 @@ static void xwayland_finish_server(struct wlr_xwayland *wlr_xwayland) { } static void xwayland_finish_display(struct wlr_xwayland *wlr_xwayland) { + if (!wlr_xwayland || wlr_xwayland->display == -1) { + return; + } + safe_close(wlr_xwayland->x_fd[0]); safe_close(wlr_xwayland->x_fd[1]); wlr_xwayland->x_fd[0] = wlr_xwayland->x_fd[1] = -1; |