From b2abff8b57166484c1c89d271966b2dcb362359a Mon Sep 17 00:00:00 2001 From: Guido Cella Date: Sat, 7 Sep 2024 21:22:40 +0200 Subject: [PATCH] fix a use after free This line makes dwl crash after closing mpv with the switchtotag patch. (cherry picked from commit 8206cc8889994b3e9ce3c50abefc19367cf49a8e) --- dwl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/dwl.c b/dwl.c index efffbbe..cf3ef70 100644 --- a/dwl.c +++ b/dwl.c @@ -1177,7 +1177,6 @@ void destroydecoration(struct wl_listener *listener, void *data) { Client *c = wl_container_of(listener, c, destroy_decoration); - c->decoration = NULL; wl_list_remove(&c->destroy_decoration.link); wl_list_remove(&c->set_decoration_mode.link);