From b29c7d01b19fc8c6bda70af016bc536cc72fe4f9 Mon Sep 17 00:00:00 2001 From: Dominique Martinet Date: Thu, 24 Aug 2017 07:47:43 +0200 Subject: [PATCH] xwayland: relinquish wl_fd[0] after creating client wayland WILL close this fd during wl_client_destroy, after our handler if we close it as well this will close some of the fd we reopened --- xwayland/xwayland.c | 1 + 1 file changed, 1 insertion(+) diff --git a/xwayland/xwayland.c b/xwayland/xwayland.c index f30b18d0..211e2a04 100644 --- a/xwayland/xwayland.c +++ b/xwayland/xwayland.c @@ -223,6 +223,7 @@ static bool wlr_xwayland_init(struct wlr_xwayland *wlr_xwayland, wlr_xwayland_finish(wlr_xwayland); return false; } + wlr_xwayland->wl_fd[0] = -1; /* not ours anymore */ wlr_xwayland->destroy_listener.notify = xwayland_destroy_event; wl_client_add_destroy_listener(wlr_xwayland->client, &wlr_xwayland->destroy_listener);