Fixed erroneous file flag in _popen.

This commit is contained in:
Eric Pouech 2005-07-05 14:07:00 +00:00 committed by Alexandre Julliard
parent 1a182a7629
commit 879a8f3a2c
1 changed files with 0 additions and 1 deletions

View File

@ -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;