diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c index 453dfeac..bc689d5f 100644 --- a/src/ui/inputwin.c +++ b/src/ui/inputwin.c @@ -577,6 +577,7 @@ _inp_rl_linehandler(char* line) if (last == NULL || strcmp(last->line, line) != 0) { add_history(line); } + free(history); } static gboolean shift_tab = FALSE; diff --git a/src/xmpp/stanza.c b/src/xmpp/stanza.c index bf353113..4be45301 100644 --- a/src/xmpp/stanza.c +++ b/src/xmpp/stanza.c @@ -995,6 +995,9 @@ stanza_create_caps_query_element(xmpp_ctx_t* ctx) #endif } } + + account_free(account); + xmpp_stanza_set_attribute(identity, "name", name_str->str); g_string_free(name_str, TRUE); xmpp_stanza_add_child(query, identity);