summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOrestis Floros <orestisflo@gmail.com>2020-05-01 14:14:53 +0200
committerGitHub <noreply@github.com>2020-05-01 14:14:53 +0200
commita1ed46a18a621008e36a3e6b26670f33ab031e0b (patch)
tree4b49e85e5296bb094a60729e7a29e00dd744ee0c /src
parentef03d7c4794d35cf322288c93577ea777a17c697 (diff)
parent45a0b91141a6e3e942b8351e765817f2d931c5a2 (diff)
Merge pull request #416 from orestisfl/memleak
Fix various memory leaks
Diffstat (limited to 'src')
-rw-r--r--src/print_ddate.c1
-rw-r--r--src/print_run_watch.c2
-rw-r--r--src/print_time.c3
3 files changed, 6 insertions, 0 deletions
diff --git a/src/print_ddate.c b/src/print_ddate.c
index 1a5258c..149a267 100644
--- a/src/print_ddate.c
+++ b/src/print_ddate.c
@@ -173,4 +173,5 @@ void print_ddate(yajl_gen json_gen, char *buffer, const char *format, time_t t)
const size_t num = sizeof(placeholders) / sizeof(placeholder_t);
buffer = format_placeholders(format, &placeholders[0], num);
OUTPUT_FULL_TEXT(buffer);
+ free(buffer);
}
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);
}
diff --git a/src/print_time.c b/src/print_time.c
index 67930b7..eede31d 100644
--- a/src/print_time.c
+++ b/src/print_time.c
@@ -82,4 +82,7 @@ void print_time(yajl_gen json_gen, char *buffer, const char *title, const char *
out:
*outwalk = '\0';
OUTPUT_FULL_TEXT(buffer);
+ if (format_time != NULL) {
+ free(buffer);
+ }
}