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

remove memory leak from creating a gdatetime string

This commit is contained in:
Will Song 2015-05-29 20:55:33 -05:00
parent 0e7507a1aa
commit 83bed119e4
No known key found for this signature in database
GPG Key ID: AF0CA153EA5D9C7C

View File

@ -132,6 +132,7 @@ status_bar_resize(void)
gchar *date_fmt = g_date_time_format(last_time, time_pref);
assert(date_fmt != NULL);
size_t len = strlen(date_fmt);
g_free(date_fmt);
if (g_strcmp0(time_pref, "") != 0) {
/* 01234567890123456
* [HH:MM] message */
@ -309,6 +310,7 @@ status_bar_print_message(const char * const msg)
gchar *date_fmt = g_date_time_format(last_time, time_pref);
assert(date_fmt != NULL);
size_t len = strlen(date_fmt);
g_free(date_fmt);
if (g_strcmp0(time_pref, "") != 0) {
mvwprintw(status_bar, 0, 5 + len, message);
} else {