about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-09-09 20:57:28 +0100
committerJames Booth <boothj5@gmail.com>2014-09-09 20:57:28 +0100
commit273cddd66116ea498c03caed151ebb14787f7ee0 (patch)
tree65db49bc5ba637f56ac41cc70457afccc2a71593
parentf983438e97d92b639d053e0c188ea2fc0bed49fa (diff)
parentb6faeaaa76403a89c93d9da30323af6615a3af21 (diff)
downloadprofani-tty-273cddd66116ea498c03caed151ebb14787f7ee0.tar.gz
Merge remote-tracking branch 'pasis/memleak'
-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