xwayland: Clean up unpaired surfaces

This commit is contained in:
Kristian Høgsberg 2014-04-07 10:16:19 -07:00
parent d7fb309dd0
commit ba83db216c

View file

@ -681,6 +681,8 @@ weston_wm_create_surface(struct wl_listener *listener, void *data)
if (window->surface_id ==
wl_resource_get_id(surface->resource)) {
xserver_map_shell_surface(window, surface);
window->surface_id = 0;
wl_list_remove(&window->link);
break;
}
}
@ -1120,6 +1122,9 @@ weston_wm_window_destroy(struct weston_wm_window *window)
window->frame_id = XCB_WINDOW_NONE;
}
if (window->surface_id)
wl_list_remove(&window->link);
hash_table_remove(window->wm->window_hash, window->id);
free(window);
}