1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-07-07 18:04:15 -04:00

Merge pull request #85 from pasis/dev

prevent double free of jabber_conn.status
This commit is contained in:
James Booth 2012-11-17 15:53:48 -08:00
commit 430c9ad060

View File

@ -313,8 +313,10 @@ jabber_update_presence(jabber_presence_t status, const char * const msg)
break;
}
if (jabber_conn.status != NULL)
if (jabber_conn.status != NULL) {
free(jabber_conn.status);
jabber_conn.status = NULL;
}
if (msg != NULL)
jabber_conn.status = strdup(msg);