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

Fixed GString freeing before use in otr.c

This commit is contained in:
James Booth 2014-01-13 19:27:40 +00:00
parent df760bed18
commit 443b240ce4

View File

@ -130,9 +130,9 @@ otr_on_connect(ProfAccount *account)
g_string_append(basedir, "/");
if (!mkdir_recursive(basedir->str)) {
g_string_free(basedir, TRUE);
log_error("Could not create %s for account %s.", basedir->str, jid);
cons_show_error("Could not create %s for account %s.", basedir->str, jid);
g_string_free(basedir, TRUE);
return;
}
@ -211,9 +211,9 @@ otr_keygen(ProfAccount *account)
g_string_append(basedir, "/");
if (!mkdir_recursive(basedir->str)) {
g_string_free(basedir, TRUE);
log_error("Could not create %s for account %s.", basedir->str, jid);
cons_show_error("Could not create %s for account %s.", basedir->str, jid);
g_string_free(basedir, TRUE);
return;
}