1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-06-02 06:11:10 +00:00

fix call to die with NULL as an argument forgot in #100

This commit is contained in:
Omar Polo 2022-01-22 18:44:55 +01:00
parent da3390089c
commit 9f2767fde7

View File

@ -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, "");
}