about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ui/buffer.c1
-rw-r--r--src/ui/window.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/ui/buffer.c b/src/ui/buffer.c
index e407681e..ab5af17d 100644
--- a/src/ui/buffer.c
+++ b/src/ui/buffer.c
@@ -118,5 +118,6 @@ _free_entry(ProfBuffEntry *entry)
     free(entry->message);
     free(entry->from);
     free(entry->date_fmt);
+    free(entry);
 }
 
diff --git a/src/ui/window.c b/src/ui/window.c
index dcbb56ba..6a1240e5 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -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
href='#n12'>12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
40
41
42
43