1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Fix memleak in bookmark minimize

Introduced in 36f2569e53
This commit is contained in:
Michael Vetter 2020-05-24 13:35:09 +02:00
parent 242ffbcf70
commit a2af4c3184

View File

@ -316,6 +316,7 @@ _bookmark_result_id_handler(xmpp_stanza_t *const stanza, void *const userdata)
} else if (strcmp(min_str, "false") == 0) {
minimize = 2;
}
free(min_str);
}
autocomplete_add(bookmark_ac, barejid);