Move wl_list_remove(view::link) to the top of the bunch
This commit is contained in:
parent
9ca0d87a32
commit
68eec4ae23
1 changed files with 1 additions and 2 deletions
|
@ -34,12 +34,11 @@ xdg_surface_destroy_notify(struct wl_listener *listener, void *UNUSED(data))
|
|||
{
|
||||
struct kiwmi_view *view = wl_container_of(listener, view, destroy);
|
||||
|
||||
wl_list_remove(&view->link);
|
||||
wl_list_remove(&view->map.link);
|
||||
wl_list_remove(&view->unmap.link);
|
||||
wl_list_remove(&view->destroy.link);
|
||||
|
||||
wl_list_remove(&view->link);
|
||||
|
||||
free(view);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue