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

This commit is contained in:
Alexandre Julliard 2006-09-12 14:50:33 +02:00
parent 8e06fc4c0d
commit 15ccaf545a
1 changed files with 1 additions and 1 deletions

View File

@ -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
{