From facb5584486e48202eaeffa54581ceac0132ae42 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Tue, 27 Dec 2011 22:47:51 -0500 Subject: [PATCH] x11: Remove destroy listener when X11 window is destroyed --- compositor/xserver-launcher.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compositor/xserver-launcher.c b/compositor/xserver-launcher.c index 9c5b227..1812472 100644 --- a/compositor/xserver-launcher.c +++ b/compositor/xserver-launcher.c @@ -691,6 +691,7 @@ wlsc_wm_handle_create_notify(struct wlsc_wm *wm, xcb_generic_event_t *event) return; } + memset(window, 0, sizeof *window); window->id = create_notify->window; hash_table_insert(wm->window_hash, window->id, window); } @@ -714,6 +715,8 @@ wlsc_wm_handle_destroy_notify(struct wlsc_wm *wm, xcb_generic_event_t *event) fprintf(stderr, "destroy window %p\n", window); hash_table_remove(wm->window_hash, window->id); + if (window->surface) + wl_list_remove(&window->surface_destroy_listener.link); free(window); } -- 2.7.4