aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index e36d912..a9fe9a1 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,5 +1,4 @@
#include "../include/parser.h"
-#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
@@ -38,6 +37,7 @@ static char* file_get_content(const char *filepath, size_t *filesize) {
result[*filesize] = '\0';
if((size_t)read(fd, result, *filesize) != *filesize) {
free(result);
+ result = NULL;
*filesize = 0;
fprintf(stderr, "Error: Failed to read all data from file %s\n", filepath);
goto cleanup;