fixed bug in FreeConsole()

svn path=/trunk/; revision=382
This commit is contained in:
Eric Kohl 1999-04-14 23:43:56 +00:00
parent 5d97b74881
commit 97c260445b

View file

@ -199,8 +199,16 @@ FreeConsole( VOID )
}
SetLastError(ERROR_SUCCESS);
CloseHandle(StdInput);
if (StdError != INVALID_HANDLE_VALUE)
{
if (StdError != StdOutput)
CloseHandle(StdError);
StdError = INVALID_HANDLE_VALUE;
}
CloseHandle(StdOutput);
CloseHandle(StdError);
#ifdef EXTENDED_CONSOLE
CloseHandle(StdAux);
CloseHandle(StdPrint);
@ -263,8 +271,8 @@ SetConsoleCursorPosition(
ConsoleScreenBufferInfo.dwCursorPosition.Y = dwCursorPosition.Y;
if( !DeviceIoControl(
hConsoleOutput,
IOCTL_CONSOLE_SET_SCREEN_BUFFER_INFO,
hConsoleOutput,
IOCTL_CONSOLE_SET_SCREEN_BUFFER_INFO,
&ConsoleScreenBufferInfo,
sizeof(CONSOLE_SCREEN_BUFFER_INFO),
NULL,