mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +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);
|
SetLastError(ERROR_SUCCESS);
|
||||||
CloseHandle(StdInput);
|
CloseHandle(StdInput);
|
||||||
CloseHandle(StdOutput);
|
|
||||||
|
if (StdError != INVALID_HANDLE_VALUE)
|
||||||
|
{
|
||||||
|
if (StdError != StdOutput)
|
||||||
CloseHandle(StdError);
|
CloseHandle(StdError);
|
||||||
|
StdError = INVALID_HANDLE_VALUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
CloseHandle(StdOutput);
|
||||||
|
|
||||||
#ifdef EXTENDED_CONSOLE
|
#ifdef EXTENDED_CONSOLE
|
||||||
CloseHandle(StdAux);
|
CloseHandle(StdAux);
|
||||||
CloseHandle(StdPrint);
|
CloseHandle(StdPrint);
|
||||||
|
|
Loading…
Reference in a new issue