1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -05:00

Merge branch 'master' into roomconfig

This commit is contained in:
James Booth 2014-09-09 21:29:18 +01:00
commit c636134566
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