From 66ad6842838880e6d83681c1c0d31ea0d44c27e6 Mon Sep 17 00:00:00 2001 From: jun7 Date: Sun, 16 Dec 2018 19:30:13 +0900 Subject: [PATCH] Fix a memory leak --- wyebrun.c | 1 + 1 file changed, 1 insertion(+) diff --git a/wyebrun.c b/wyebrun.c index d6c5470..60bfa08 100644 --- a/wyebrun.c +++ b/wyebrun.c @@ -313,6 +313,7 @@ static void freecl(Client *c) rmpath = g_slist_remove(rmpath, c->pppath); g_mutex_unlock(&rmm); g_free(c->pppath); + g_free(c); } static Client *getcl() {