1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

fixed memleak in _iq_handle_discoinfo_get

This commit is contained in:
Dmitry Podgorny 2013-08-24 00:40:23 +03:00
parent 021d095536
commit 012366cf13

View File

@ -302,6 +302,7 @@ _iq_handle_discoinfo_get(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
xmpp_stanza_add_child(response, query);
xmpp_send(conn, response);
xmpp_stanza_release(query);
xmpp_stanza_release(response);
}