aboutsummaryrefslogtreecommitdiff
path: root/dwl.c
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2020-05-10 01:04:31 -0500
committerDevin J. Pohly <djpohly@gmail.com>2020-05-10 01:04:31 -0500
commit67299a18a5b3aecf4febf2818fdf8140a561df5d (patch)
tree43989e1ba929e743b23678beb4fe7cedfa477de7 /dwl.c
parentabab2ed92a366d5711f96fef6a9196674967e71d (diff)
make sure freed listeners are removed from list
Diffstat (limited to 'dwl.c')
-rw-r--r--dwl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/dwl.c b/dwl.c
index 0e4441a..72f969e 100644
--- a/dwl.c
+++ b/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);
}