mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
remove memory leak from creating a gdatetime string
This commit is contained in:
parent
0e7507a1aa
commit
83bed119e4
@ -132,6 +132,7 @@ status_bar_resize(void)
|
|||||||
gchar *date_fmt = g_date_time_format(last_time, time_pref);
|
gchar *date_fmt = g_date_time_format(last_time, time_pref);
|
||||||
assert(date_fmt != NULL);
|
assert(date_fmt != NULL);
|
||||||
size_t len = strlen(date_fmt);
|
size_t len = strlen(date_fmt);
|
||||||
|
g_free(date_fmt);
|
||||||
if (g_strcmp0(time_pref, "") != 0) {
|
if (g_strcmp0(time_pref, "") != 0) {
|
||||||
/* 01234567890123456
|
/* 01234567890123456
|
||||||
* [HH:MM] message */
|
* [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);
|
gchar *date_fmt = g_date_time_format(last_time, time_pref);
|
||||||
assert(date_fmt != NULL);
|
assert(date_fmt != NULL);
|
||||||
size_t len = strlen(date_fmt);
|
size_t len = strlen(date_fmt);
|
||||||
|
g_free(date_fmt);
|
||||||
if (g_strcmp0(time_pref, "") != 0) {
|
if (g_strcmp0(time_pref, "") != 0) {
|
||||||
mvwprintw(status_bar, 0, 5 + len, message);
|
mvwprintw(status_bar, 0, 5 + len, message);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user