summaryrefslogtreecommitdiff
path: root/src/print_run_watch.c
diff options
context:
space:
mode:
authorOrestis Floros <orestisflo@gmail.com>2020-05-01 10:04:33 +0200
committerOrestis Floros <orestisflo@gmail.com>2020-05-01 13:55:19 +0200
commit980164cccaa37eea7494b2d238fdb3e4c73e3beb (patch)
tree61b503f0fd72941aa76c6d83a2f7e88c3af912b0 /src/print_run_watch.c
parentef03d7c4794d35cf322288c93577ea777a17c697 (diff)
Fix various memory leaks
Fixes #362
Diffstat (limited to 'src/print_run_watch.c')
-rw-r--r--src/print_run_watch.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/print_run_watch.c b/src/print_run_watch.c
index d153da4..ccc7206 100644
--- a/src/print_run_watch.c
+++ b/src/print_run_watch.c
@@ -1,6 +1,7 @@
// vim:ts=4:sw=4:expandtab
#include <config.h>
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
#include <yajl/yajl_gen.h>
#include <yajl/yajl_version.h>
@@ -35,4 +36,5 @@ void print_run_watch(yajl_gen json_gen, char *buffer, const char *title, const c
END_COLOR;
OUTPUT_FULL_TEXT(buffer);
+ free(buffer);
}