1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Merge remote-tracking branch 'pasis/memleak'

This commit is contained in:
James Booth 2014-09-09 20:57:28 +01:00
commit 273cddd661
2 changed files with 2 additions and 0 deletions

View File

@ -118,5 +118,6 @@ _free_entry(ProfBuffEntry *entry)
free(entry->message);
free(entry->from);
free(entry->date_fmt);
free(entry);
}

View File

@ -355,6 +355,7 @@ win_save_vprint(ProfWin *window, const char show_char, GTimeVal *tstamp,
GString *fmt_msg = g_string_new(NULL);
g_string_vprintf(fmt_msg, message, arg);
win_save_print(window, show_char, tstamp, flags, attrs, from, fmt_msg->str);
g_string_free(fmt_msg, TRUE);
}
void