Skip to content
Snippets Groups Projects
Commit 15ccaf54 authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

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

parent 8e06fc4c
No related branches found
No related tags found
No related merge requests found
......@@ -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
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment