diff options
author | James Booth <boothj5@gmail.com> | 2013-01-23 22:35:15 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-01-23 22:35:15 +0000 |
commit | 3cbae903cb7edc0166177e097430bec0a7c79696 (patch) | |
tree | ffacd66f23a121a6ad3d6109b3b7b97ba3bb3a1e | |
parent | e2e805dd4fbfeadddc79d9b4063cfd04e341a7c4 (diff) | |
download | profani-tty-3cbae903cb7edc0166177e097430bec0a7c79696.tar.gz |
Fixed a couple of memory leaks
-rw-r--r-- | src/jabber.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/jabber.c b/src/jabber.c index 58895764..46427a52 100644 --- a/src/jabber.c +++ b/src/jabber.c @@ -426,12 +426,14 @@ jabber_update_presence(jabber_presence_t status, const char * const msg, xmpp_stanza_t *caps = xmpp_stanza_new(jabber_conn.ctx); xmpp_stanza_set_name(caps, STANZA_NAME_C); xmpp_stanza_set_ns(caps, STANZA_NS_CAPS); - xmpp_stanza_set_attribute(caps, STANZA_ATTR_HASH, "sha-1"); - xmpp_stanza_set_attribute(caps, STANZA_ATTR_NODE, "http://www.profanity.im"); xmpp_stanza_t *query = caps_create_query_response_stanza(jabber_conn.ctx); + char *sha1 = caps_create_sha1_str(query); + xmpp_stanza_set_attribute(caps, STANZA_ATTR_HASH, "sha-1"); + xmpp_stanza_set_attribute(caps, STANZA_ATTR_NODE, "http://www.profanity.im"); xmpp_stanza_set_attribute(caps, STANZA_ATTR_VER, sha1); xmpp_stanza_add_child(presence, caps); + xmpp_send(jabber_conn.conn, presence); // send presence for each room @@ -449,6 +451,8 @@ jabber_update_presence(jabber_presence_t status, const char * const msg, g_list_free(rooms); xmpp_stanza_release(presence); + + FREE_SET_NULL(sha1); } void @@ -994,6 +998,8 @@ _version_request_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, xmpp_stanza_add_child(response, query); xmpp_send(conn, response); + + xmpp_stanza_release(response); } return 1; |