From 83bed119e4c5a39bc9f76640187db94dffac23cb Mon Sep 17 00:00:00 2001 From: Will Song Date: Fri, 29 May 2015 20:55:33 -0500 Subject: [PATCH] remove memory leak from creating a gdatetime string --- src/ui/statusbar.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/statusbar.c b/src/ui/statusbar.c index c388a874..f3d204f1 100644 --- a/src/ui/statusbar.c +++ b/src/ui/statusbar.c @@ -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 {