mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
[WIN32K] Remove unnecessary if in NtUserGetGUIThreadInfo.
This condition is already checked above. Powered by clang-cl.
This commit is contained in:
parent
42657493ef
commit
3235e35dee
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ NtUserGetGUIThreadInfo(
|
|||
MsgQueue = W32Thread->MessageQueue;
|
||||
else
|
||||
{
|
||||
if ( Desktop ) MsgQueue = Desktop->ActiveMessageQueue;
|
||||
MsgQueue = Desktop->ActiveMessageQueue;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue