From 92780f3e6ef0e8f9904c13f0fa8fa1f78ceafe8b Mon Sep 17 00:00:00 2001 From: James Booth Date: Mon, 2 May 2016 00:59:37 +0100 Subject: Remove free DiscoInfo values --- src/xmpp/connection.c | 2 +- src/xmpp/iq.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c index 34cf939d..f730c99c 100644 --- a/src/xmpp/connection.c +++ b/src/xmpp/connection.c @@ -699,7 +699,7 @@ _connection_handler(xmpp_conn_t *const conn, const xmpp_conn_event_t status, con // items discovery DiscoInfo *info = malloc(sizeof(struct disco_info_t)); info->item = strdup(jabber_conn.domain); - info->features = g_hash_table_new_full(g_str_hash, g_str_equal, free, free); + info->features = g_hash_table_new_full(g_str_hash, g_str_equal, free, NULL); disco_items = g_slist_append(disco_items, info); iq_disco_info_request_onconnect(info->item); iq_disco_items_request_onconnect(jabber_conn.domain); diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index fcdaa0a8..092d9392 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -2050,7 +2050,7 @@ _disco_items_result_handler(xmpp_stanza_t *const stanza) DiscoItem *item = res_items->data; DiscoInfo *info = malloc(sizeof(struct disco_info_t)); info->item = strdup(item->jid); - info->features = g_hash_table_new_full(g_str_hash, g_str_equal, free, free); + info->features = g_hash_table_new_full(g_str_hash, g_str_equal, free, NULL); jabber_set_disco_items(g_slist_append(jabber_get_disco_items(), info)); iq_disco_info_request_onconnect(info->item); res_items = g_slist_next(res_items); -- cgit 1.4.1-2-gfad0