summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/print_file_contents.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print_file_contents.c b/src/print_file_contents.c
index afbe3e3..91ad80e 100644
--- a/src/print_file_contents.c
+++ b/src/print_file_contents.c
@@ -23,7 +23,7 @@ static void *scalloc(size_t size) {
void print_file_contents(yajl_gen json_gen, char *buffer, const char *title, const char *path, const char *format, const char *format_bad, const int max_chars) {
const char *walk = format;
char *outwalk = buffer;
- char *buf = scalloc(max_chars * sizeof(char));
+ char *buf = scalloc(max_chars * sizeof(char) + 1);
int n = -1;
int fd = open(path, O_RDONLY);