1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-06-16 06:25:23 +00:00

Merge pull request #103 from omar-polo/missing-die-fixes

fix call to die with NULL as an argument forgot in #100
This commit is contained in:
fosslinux 2024-02-27 11:15:15 +00:00 committed by GitHub
commit 1a089816fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -377,7 +377,7 @@ static void run_cgi(state *st, char *script, char *arg)
}
/* Didn't work - die */
die(st, ERR_ACCESS, NULL);
die(st, ERR_ACCESS, "");
}