add malloc check
diff --git a/src/afl-cc.c b/src/afl-cc.c
index 4c377ad..ffd1547 100644
--- a/src/afl-cc.c
+++ b/src/afl-cc.c
@@ -316,6 +316,8 @@
   char *new = malloc(strlen(string) + 1);
   char *tmp = malloc(strlen(ptr));
   u32   count = 0, len, ende = 0;
+
+  if (!new || !tmp) { FATAL("could not aquire memory"); }
   strcpy(new, "-fsanitize=");
 
   do {