diff --git a/src/ui/window.c b/src/ui/window.c index d537c97a..ef675c09 100644 --- a/src/ui/window.c +++ b/src/ui/window.c @@ -940,6 +940,7 @@ win_print_with_receipt(ProfWin *window, const char show_char, int pad_indent, GT _win_print(window, show_char, pad_indent, time, flags, theme_item, from, message, receipt); // TODO: cross-reference.. this should be replaced by a real event-based system ui_input_nonblocking(TRUE); + g_date_time_unref(time); } void diff --git a/src/xmpp/message.c b/src/xmpp/message.c index ada2d260..b7ee1018 100644 --- a/src/xmpp/message.c +++ b/src/xmpp/message.c @@ -581,9 +581,10 @@ _message_send_receipt(const char * const fulljid, const char * const message_id) xmpp_conn_t * const conn = connection_get_conn(); xmpp_ctx_t * const ctx = connection_get_ctx(); xmpp_stanza_t *message = xmpp_stanza_new(ctx); - char *id = create_unique_id("receipt"); xmpp_stanza_set_name(message, STANZA_NAME_MESSAGE); + char *id = create_unique_id("receipt"); xmpp_stanza_set_id(message, id); + free(id); xmpp_stanza_set_attribute(message, STANZA_ATTR_TO, fulljid); xmpp_stanza_t *receipt = xmpp_stanza_new(ctx);