diff options
author | Johannes Sixt <j6t@kdbg.org> | 2011-02-04 09:41:58 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-02-07 14:18:56 -0800 |
commit | 13af8cbd6af3f572a5c6c2fb7adc8fc7c408a3e2 (patch) | |
tree | b6fe77d266eb7d4faf2e53f6f3642e9fee140bc5 /run-command.c | |
parent | 787d2a784b1d5d9c59c0098533ce9fdb757942d9 (diff) | |
download | git-13af8cbd6af3f572a5c6c2fb7adc8fc7c408a3e2.tar.gz |
start_command: flush buffers in the WIN32 code path as well
The POSIX code path did The Right Thing already, but we have to do the same
on Windows.
This bug caused failures in t5526-fetch-submodules, where the output of
'git fetch --recurse-submodules' was in the wrong order.
Debugged-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'run-command.c')
-rw-r--r-- | run-command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-command.c b/run-command.c index 2a1041ef65..f91e446c86 100644 --- a/run-command.c +++ b/run-command.c @@ -194,6 +194,7 @@ fail_pipe: } trace_argv_printf(cmd->argv, "trace: run_command:"); + fflush(NULL); #ifndef WIN32 { @@ -201,7 +202,6 @@ fail_pipe: if (pipe(notify_pipe)) notify_pipe[0] = notify_pipe[1] = -1; - fflush(NULL); cmd->pid = fork(); if (!cmd->pid) { /* |