mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Free memory in disco response handler
This commit is contained in:
parent
c9869f93c3
commit
e325c391c5
@ -1062,8 +1062,14 @@ _disco_response_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
|
|||||||
|
|
||||||
if (g_strcmp0(given_sha1, generated_sha1) != 0) {
|
if (g_strcmp0(given_sha1, generated_sha1) != 0) {
|
||||||
log_info("Invalid SHA1 recieved for caps.");
|
log_info("Invalid SHA1 recieved for caps.");
|
||||||
|
FREE_SET_NULL(generated_sha1);
|
||||||
|
g_strfreev(split);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
FREE_SET_NULL(generated_sha1);
|
||||||
|
g_strfreev(split);
|
||||||
|
|
||||||
// non supported hash, or legacy caps
|
// non supported hash, or legacy caps
|
||||||
} else {
|
} else {
|
||||||
caps_key = id + 6;
|
caps_key = id + 6;
|
||||||
|
Loading…
Reference in New Issue
Block a user