diff options
| -rw-r--r-- | Makefile | 7 | ||||
| -rw-r--r-- | later.c | 1 |
2 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,7 @@ -.PHONY: build +.PHONY: build debug build: - cc -g later.c -Wall -Werror -o later + cc later.c -Wall -Werror -o later + +debug: + cc later.c -g -fsanitize=address -Wall -Werror -o later @@ -192,6 +192,7 @@ int main(int argc, char** argv) { if (argi == argc) { printf("unrecognized arguments\n"); + free(file); return 1; } |
