From 2bacd43a16d62911b6d475287f7c6df87f459fb7 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 1 May 2016 23:41:57 +0100 Subject: Free stanza text on plugin send hooks --- src/xmpp/iq.c | 1 + src/xmpp/message.c | 1 + src/xmpp/presence.c | 1 + 3 files changed, 3 insertions(+) (limited to 'src/xmpp') diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index cba3d4d3..f3f221e9 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -2071,6 +2071,7 @@ send_iq_stanza(xmpp_stanza_t *const stanza) char *plugin_text = plugins_on_iq_stanza_send(text); if (plugin_text) { xmpp_send_raw_string(conn, "%s", plugin_text); + free(plugin_text); } else { xmpp_send_raw_string(conn, "%s", text); } diff --git a/src/xmpp/message.c b/src/xmpp/message.c index 71d51e19..9516217d 100644 --- a/src/xmpp/message.c +++ b/src/xmpp/message.c @@ -872,6 +872,7 @@ _send_message_stanza(xmpp_stanza_t *const stanza) char *plugin_text = plugins_on_message_stanza_send(text); if (plugin_text) { xmpp_send_raw_string(conn, "%s", plugin_text); + free(plugin_text); } else { xmpp_send_raw_string(conn, "%s", text); } diff --git a/src/xmpp/presence.c b/src/xmpp/presence.c index 6cc14552..c147970c 100644 --- a/src/xmpp/presence.c +++ b/src/xmpp/presence.c @@ -841,6 +841,7 @@ _send_presence_stanza(xmpp_stanza_t *const stanza) char *plugin_text = plugins_on_presence_stanza_send(text); if (plugin_text) { xmpp_send_raw_string(conn, "%s", plugin_text); + free(plugin_text); } else { xmpp_send_raw_string(conn, "%s", text); } -- cgit 1.4.1-2-gfad0