From 74018495cd2e23d91d0d727a7ac4a7f122dd16a8 Mon Sep 17 00:00:00 2001 From: Consolatis <35009135+Consolatis@users.noreply.github.com> Date: Sat, 7 Jun 2025 01:51:56 +0200 Subject: [PATCH] view.c: free icon name on view destroy --- src/view.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/view.c b/src/view.c index b9879436..415fe83b 100644 --- a/src/view.c +++ b/src/view.c @@ -2595,6 +2595,7 @@ view_destroy(struct view *view) if (view->icon.buffers.data) { view_set_icon(view, NULL, NULL); } + zfree(view->icon.name); /* * The layer-shell top-layer is disabled when an application is running -- 2.52.0