mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-16 06:59:44 -05:00
wl_shell/compositor surface: do not check if it's in list before removing
This commit is contained in:
parent
5dae8e1be8
commit
d49edc8243
2 changed files with 2 additions and 20 deletions
|
|
@ -98,15 +98,7 @@ static struct wl_shell_interface wl_shell_impl = {
|
|||
};
|
||||
|
||||
static void wl_shell_destroy(struct wl_resource *resource) {
|
||||
struct wlr_wl_shell *wl_shell = wl_resource_get_user_data(resource);
|
||||
struct wl_resource *_resource = NULL;
|
||||
wl_resource_for_each(_resource, &wl_shell->wl_resources) {
|
||||
if (_resource == resource) {
|
||||
struct wl_list *link = wl_resource_get_link(_resource);
|
||||
wl_list_remove(link);
|
||||
break;
|
||||
}
|
||||
}
|
||||
wl_list_remove(wl_resource_get_link(resource));
|
||||
}
|
||||
|
||||
static void wl_shell_bind(struct wl_client *wl_client, void *_wl_shell,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue