From 879a8f3a2cf9e1f7005ae00ba07c82a6dff902d1 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Tue, 5 Jul 2005 14:07:00 +0000 Subject: [PATCH] Fixed erroneous file flag in _popen. --- dlls/msvcrt/process.c | 1 - 1 file changed, 1 deletion(-) diff --git a/dlls/msvcrt/process.c b/dlls/msvcrt/process.c index c5e21ebbef..c33f1e24db 100644 --- a/dlls/msvcrt/process.c +++ b/dlls/msvcrt/process.c @@ -541,7 +541,6 @@ MSVCRT_FILE* MSVCRT__popen(const char* command, const char* mode) break; } } - textmode |= MSVCRT__O_NOINHERIT; if (_pipe(fds, 0, textmode) == -1) return NULL;