From 1cf054f2b4ad95c5f9e4d90752e004f95378f532 Mon Sep 17 00:00:00 2001 From: Axel Wagner Date: Wed, 26 Jan 2011 12:02:09 +0100 Subject: [PATCH] Bugfix: free() output-names seperately (thx dothebart) --- i3bar/src/xcb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c index e481e314..7e4e3d82 100644 --- a/i3bar/src/xcb.c +++ b/i3bar/src/xcb.c @@ -586,6 +586,7 @@ void clean_xcb() { destroy_window(o_walk); FREE_TAILQ(o_walk->workspaces, i3_ws); FREE(o_walk->workspaces); + FREE(o_walk->name); } FREE_SLIST(outputs, i3_output); FREE(outputs); -- 2.39.5