[WINSRV] Don't try to remove messages from the queue without dispatching them. CORE-13734

This partially reverts r58615 / 01729482ae.
This commit is contained in:
Thomas Faber 2018-03-07 13:03:39 +01:00
parent 7905efdf35
commit 3159de5573
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -229,13 +229,10 @@ GuiConsoleInputThread(PVOID Param)
* that the window that we want to destroy doesn't exist yet.
* So first empty the message queue.
*/
/*
while (PeekMessageW(&TempMsg, NULL, 0, 0, PM_REMOVE))
{
TranslateMessage(&TempMsg);
DispatchMessageW(&TempMsg);
}*/
while (PeekMessageW(&TempMsg, NULL, 0, 0, PM_REMOVE)) ;
}
if (GuiData->hWindow == NULL) continue;