From e325c391c5dbaa07c22a62e11ce9759b8e49f24b Mon Sep 17 00:00:00 2001 From: James Booth Date: Wed, 23 Jan 2013 22:46:28 +0000 Subject: [PATCH] Free memory in disco response handler --- src/jabber.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/jabber.c b/src/jabber.c index db916dbc..f68327fb 100644 --- a/src/jabber.c +++ b/src/jabber.c @@ -1062,8 +1062,14 @@ _disco_response_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, if (g_strcmp0(given_sha1, generated_sha1) != 0) { log_info("Invalid SHA1 recieved for caps."); + FREE_SET_NULL(generated_sha1); + g_strfreev(split); + return 1; } + FREE_SET_NULL(generated_sha1); + g_strfreev(split); + // non supported hash, or legacy caps } else { caps_key = id + 6;