diff options
-rw-r--r-- | main.c | 4 | ||||
-rw-r--r-- | net.c | 6 |
2 files changed, 6 insertions, 4 deletions
@@ -44,7 +44,7 @@ int main(int argc, char* argv[]) { } -// getOpts parses all command line arguments. +// parses all command line arguments. static void get_opts(Options* opts, int argc, char* argv[]) { // initialize Options struct @@ -67,7 +67,7 @@ static void get_opts(Options* opts, int argc, char* argv[]) { } -// printHelp prints out the help page. +// prints out the help page. static void print_help(void) { fprintf(stderr, @@ -37,8 +37,8 @@ static long flags; static xmpp_sm_state_t* sm_state; -static int message_handler(xmpp_conn_t *conn, xmpp_stanza_t *stanza, - void *userdata) { +static int message_handler(xmpp_conn_t* conn, xmpp_stanza_t* stanza, + void* userdata) { xmpp_stanza_t* body = xmpp_stanza_get_child_by_name(stanza, "body"); if (body == NULL) { @@ -51,6 +51,8 @@ static int message_handler(xmpp_conn_t *conn, xmpp_stanza_t *stanza, data_add_incoming_message(sender, content); + xmpp_free(ctx, (void*)content); + return 1; } |