mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 07:41:51 +00:00
fixed bug in FreeConsole()
svn path=/trunk/; revision=382
This commit is contained in:
parent
5d97b74881
commit
97c260445b
1 changed files with 11 additions and 3 deletions
|
@ -199,8 +199,16 @@ FreeConsole( VOID )
|
|||
}
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
CloseHandle(StdInput);
|
||||
CloseHandle(StdOutput);
|
||||
|
||||
if (StdError != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
if (StdError != StdOutput)
|
||||
CloseHandle(StdError);
|
||||
StdError = INVALID_HANDLE_VALUE;
|
||||
}
|
||||
|
||||
CloseHandle(StdOutput);
|
||||
|
||||
#ifdef EXTENDED_CONSOLE
|
||||
CloseHandle(StdAux);
|
||||
CloseHandle(StdPrint);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue