From bc03e0dc02585733b3296b8c089030d4de84a1ee Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 15 Jun 2014 21:04:07 +0100 Subject: [PATCH] Free list in wins_get_by_recipient --- src/ui/windows.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/windows.c b/src/ui/windows.c index 2988ba6e..6f9a6a8e 100644 --- a/src/ui/windows.c +++ b/src/ui/windows.c @@ -159,6 +159,7 @@ wins_get_by_recipient(const char * const recipient) curr = g_list_next(curr); } + g_list_free(values); return NULL; }