about summary refs log tree commit diff stats
path: root/src/xmpp/form.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-11-01 01:48:36 +0000
committerJames Booth <boothj5@gmail.com>2014-11-01 01:48:36 +0000
commitc4412fe82385945a5a056640135e9b53901d563f (patch)
treea1fc7484b7f692ac436da4a69a027b8cbacf9679 /src/xmpp/form.c
parent51164398e3584e78628197d8c365fd79b16ac103 (diff)
downloadprofani-tty-c4412fe82385945a5a056640135e9b53901d563f.tar.gz
Fixed various memory leaks
Diffstat (limited to 'src/xmpp/form.c')
-rw-r--r--src/xmpp/form.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xmpp/form.c b/src/xmpp/form.c
index e4f336e9..9d26b28f 100644
--- a/src/xmpp/form.c
+++ b/src/xmpp/form.c
@@ -458,6 +458,8 @@ _form_tag_exists(DataForm *form, const char * const tag)
         }
         curr = g_list_next(curr);
     }
+
+    g_list_free(tags);
     return FALSE;
 }