aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2020-07-22 18:48:30 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-22 18:48:30 +0200
commite9e41c02d4309cd50b5584a8dfc0d7e01cb27e10 (patch)
tree365b00dba760153e8d88fa143fb7e15a2a1a6448 /src/main.c
parent93db3b8726f6d7574b71926285e86135e822f9d3 (diff)
Kill child process when parent dies
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;