diff options
author | James Booth <boothj5@gmail.com> | 2013-08-25 23:20:39 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-08-25 23:20:39 +0100 |
commit | 550071afded1464dc04cba856bed4687a8a968a4 (patch) | |
tree | 2349b4f808ec131586ca58cd94573c8d0e7edc12 /src/xmpp/roster.c | |
parent | 0d239cfffbfac00490a44724eb84c9c07e062240 (diff) | |
parent | e21bf8a18d682ae95699b6ddedf17aa870303a3c (diff) | |
download | profani-tty-550071afded1464dc04cba856bed4687a8a968a4.tar.gz |
Merge branch 'master' into otr
Diffstat (limited to 'src/xmpp/roster.c')
-rw-r--r-- | src/xmpp/roster.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/roster.c b/src/xmpp/roster.c index ed72d502..b31a2725 100644 --- a/src/xmpp/roster.c +++ b/src/xmpp/roster.c @@ -567,7 +567,7 @@ _roster_handle_push(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, while (resources != NULL) { GString *fulljid = g_string_new(strdup(barejid)); g_string_append(fulljid, "/"); - g_string_append(fulljid, strdup(resources->data)); + g_string_append(fulljid, resources->data); autocomplete_remove(fulljid_ac, fulljid->str); g_string_free(fulljid, TRUE); resources = g_list_next(resources); |