Commit 15ccaf54 authored by Alexandre Julliard's avatar Alexandre Julliard

secur32: Use _exit instead of exit in child process to avoid flushing things twice.

parent 8e06fc4c
......@@ -104,7 +104,7 @@ SECURITY_STATUS fork_helper(PNegoHelper *new_helper, const char *prog,
/* Whoops, we shouldn't get here. Big badaboom.*/
write(STDOUT_FILENO, "BH\n", 3);
exit(1);
_exit(1);
}
else
{
......
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