mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-26 19:36:22 +00:00
handle_headline(): Free text correctly
This commit is contained in:
@@ -112,12 +112,14 @@ _handled_by_plugin(xmpp_stanza_t *const stanza)
|
|||||||
static void
|
static void
|
||||||
_handle_headline(xmpp_stanza_t *const stanza)
|
_handle_headline(xmpp_stanza_t *const stanza)
|
||||||
{
|
{
|
||||||
|
xmpp_ctx_t *ctx = connection_get_ctx();
|
||||||
char* text = NULL;
|
char* text = NULL;
|
||||||
xmpp_stanza_t *body = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_BODY);
|
xmpp_stanza_t *body = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_BODY);
|
||||||
if (body) {
|
if (body) {
|
||||||
text = xmpp_stanza_get_text(body);
|
text = xmpp_stanza_get_text(body);
|
||||||
if (text) {
|
if (text) {
|
||||||
cons_show("Headline: %s", text);
|
cons_show("Headline: %s", text);
|
||||||
|
xmpp_free(ctx, text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user