about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-06-15 21:04:07 +0100
committerJames Booth <boothj5@gmail.com>2014-06-15 21:04:07 +0100
commitbc03e0dc02585733b3296b8c089030d4de84a1ee (patch)
treed738ecc09a458969cfe33ff2b418fcc9d754416a
parentd6d714e1ed3817ab7540dcb2c794e652b74846c7 (diff)
downloadprofani-tty-bc03e0dc02585733b3296b8c089030d4de84a1ee.tar.gz
Free list in wins_get_by_recipient
-rw-r--r--src/ui/windows.c1
1 files changed, 1 insertions, 0 deletions
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;
 }