Commit 6e8d4129 authored by Alexander Alashkin's avatar Alexander Alashkin Committed by Cesanta Bot

Use _exit in CGI. Close cesanta/mongoose#779

PUBLISHED_FROM=bfe62d3824ee3a6e66b7d1a57ee7bad3b726649d
parent 2485a8f8
......@@ -7873,7 +7873,7 @@ static int mg_start_process(const char *interp, const char *cmd,
interp == NULL ? "" : interp, interp == NULL ? "" : " ", cmd,
strerror(errno));
send(1, buf, strlen(buf), 0);
exit(EXIT_FAILURE); /* exec call failed */
_exit(EXIT_FAILURE); /* exec call failed */
}
return (pid != 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment