From 508a21f93e7eeaafb9328d0e43d0e1e0f02ca5a1 Mon Sep 17 00:00:00 2001 From: Versus Void Date: Wed, 11 Oct 2017 16:01:36 +0000 Subject: [PATCH] Destroy surfaces on client destruction --- types/wlr_xdg_shell_v6.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/types/wlr_xdg_shell_v6.c b/types/wlr_xdg_shell_v6.c index a16d3319..3f5f22a0 100644 --- a/types/wlr_xdg_shell_v6.c +++ b/types/wlr_xdg_shell_v6.c @@ -1147,8 +1147,7 @@ static void wlr_xdg_client_v6_destroy(struct wl_resource *resource) { struct wlr_xdg_surface_v6 *surface, *tmp = NULL; wl_list_for_each_safe(surface, tmp, &client->surfaces, link) { - wl_list_remove(&surface->link); - wl_list_init(&surface->link); + xdg_surface_destroy(surface); } if (client->ping_timer != NULL) {