about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/ui/statusbar.c2
1 files changed, 2 insertions, 0 deletions
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 {