From 15ccaf545a6301e21ae0a24ab396706f3eeeda7b Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 12 Sep 2006 14:50:33 +0200 Subject: [PATCH] secur32: Use _exit instead of exit in child process to avoid flushing things twice. --- dlls/secur32/dispatcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/secur32/dispatcher.c b/dlls/secur32/dispatcher.c index f9f37e4e497..27c1f9af627 100644 --- a/dlls/secur32/dispatcher.c +++ b/dlls/secur32/dispatcher.c @@ -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 {