- Partially revert r54475 to check if it fixes KVM

svn path=/trunk/; revision=54476
This commit is contained in:
Rafal Harabien 2011-11-22 20:11:55 +00:00
parent 2e5bcdab25
commit 397bb2c11e
2 changed files with 3 additions and 3 deletions

View file

@ -2902,7 +2902,7 @@ GetAppName:
if (!NT_SUCCESS(Status))
{
DPRINT1("CSR Notification Failed");
DPRINT1("CSR Notification Failed\n");
BaseSetLastNTError(Status);
goto Cleanup;
}

View file

@ -158,8 +158,8 @@ Win32CsrReleaseConsole(
LeaveCriticalSection(&Console->Lock);
if (_InterlockedDecrement(&Console->ReferenceCount) == 0)
ConioDeleteConsole(&Console->Header);
CloseHandle(ProcessData->ConsoleEvent);
ProcessData->ConsoleEvent = NULL;
//CloseHandle(ProcessData->ConsoleEvent);
//ProcessData->ConsoleEvent = NULL;
RtlLeaveCriticalSection(&ProcessData->HandleTableLock);
return STATUS_SUCCESS;
}