mirror of
https://github.com/reactos/reactos.git
synced 2025-05-24 19:56:38 +00:00
[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:
parent
7905efdf35
commit
3159de5573
1 changed files with 1 additions and 4 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue