make sure freed listeners are removed from list
This commit is contained in:
parent
abab2ed92a
commit
67299a18a5
1 changed files with 3 additions and 0 deletions
3
dwl.c
3
dwl.c
|
@ -501,6 +501,9 @@ destroynotify(struct wl_listener *listener, void *data)
|
|||
{
|
||||
/* Called when the surface is destroyed and should never be shown again. */
|
||||
Client *c = wl_container_of(listener, c, destroy);
|
||||
wl_list_remove(&c->map.link);
|
||||
wl_list_remove(&c->unmap.link);
|
||||
wl_list_remove(&c->destroy.link);
|
||||
free(c);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue