diff options
author | James Booth <boothj5@gmail.com> | 2014-06-15 21:04:07 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-06-15 21:04:07 +0100 |
commit | bc03e0dc02585733b3296b8c089030d4de84a1ee (patch) | |
tree | d738ecc09a458969cfe33ff2b418fcc9d754416a | |
parent | d6d714e1ed3817ab7540dcb2c794e652b74846c7 (diff) | |
download | profani-tty-bc03e0dc02585733b3296b8c089030d4de84a1ee.tar.gz |
Free list in wins_get_by_recipient
-rw-r--r-- | src/ui/windows.c | 1 |
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; } |