secur32: Use _exit instead of exit in child process to avoid flushing things twice.
This commit is contained in:
parent
8e06fc4c0d
commit
15ccaf545a
|
@ -104,7 +104,7 @@ SECURITY_STATUS fork_helper(PNegoHelper *new_helper, const char *prog,
|
||||||
|
|
||||||
/* Whoops, we shouldn't get here. Big badaboom.*/
|
/* Whoops, we shouldn't get here. Big badaboom.*/
|
||||||
write(STDOUT_FILENO, "BH\n", 3);
|
write(STDOUT_FILENO, "BH\n", 3);
|
||||||
exit(1);
|
_exit(1);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue