mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
user32: Don't process other messages when recursing in peek_message for an internal message.
This commit is contained in:
parent
706b29c47c
commit
fe9f688774
@ -2163,8 +2163,12 @@ static BOOL peek_message( MSG *msg, HWND hwnd, UINT first, UINT last, UINT flags
|
||||
if (info.msg.message & 0x80000000) /* internal message */
|
||||
{
|
||||
if (flags & PM_REMOVE)
|
||||
{
|
||||
handle_internal_message( info.msg.hwnd, info.msg.message,
|
||||
info.msg.wParam, info.msg.lParam );
|
||||
/* if this is a nested call return right away */
|
||||
if (first == info.msg.message && last == info.msg.message) return FALSE;
|
||||
}
|
||||
else
|
||||
peek_message( msg, info.msg.hwnd, info.msg.message,
|
||||
info.msg.message, flags | PM_REMOVE, changed_mask );
|
||||
|
Loading…
Reference in New Issue
Block a user