Commit 879a8f3a authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Fixed erroneous file flag in _popen.

parent 1a182a76
...@@ -541,7 +541,6 @@ MSVCRT_FILE* MSVCRT__popen(const char* command, const char* mode) ...@@ -541,7 +541,6 @@ MSVCRT_FILE* MSVCRT__popen(const char* command, const char* mode)
break; break;
} }
} }
textmode |= MSVCRT__O_NOINHERIT;
if (_pipe(fds, 0, textmode) == -1) if (_pipe(fds, 0, textmode) == -1)
return NULL; return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment