From: Axel Wagner Date: Wed, 26 Jan 2011 11:02:09 +0000 (+0100) Subject: Bugfix: free() output-names seperately (thx dothebart) X-Git-Tag: 4.0.1~7^2~3^2~31 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8fa720d6b9729daa74c55ed9243391a63b57323e;p=i3%2Fi3 Bugfix: free() output-names seperately (thx dothebart) --- diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c index 10afa923..af472638 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);