From 9f2767fde7728059a759673add815057158d02b6 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Sat, 22 Jan 2022 18:44:55 +0100 Subject: [PATCH] fix call to die with NULL as an argument forgot in #100 --- src/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file.c b/src/file.c index 391a80e..03e4ab4 100644 --- a/src/file.c +++ b/src/file.c @@ -374,7 +374,7 @@ static void run_cgi(state *st, char *script, char *arg) } /* Didn't work - die */ - die(st, ERR_ACCESS, NULL); + die(st, ERR_ACCESS, ""); }