[WIN32K] Remove unnecessary if in NtUserGetGUIThreadInfo.

This condition is already checked above.
Powered by clang-cl.
This commit is contained in:
Thomas Faber 2021-10-15 22:30:34 -04:00
parent 42657493ef
commit 3235e35dee
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -426,7 +426,7 @@ NtUserGetGUIThreadInfo(
MsgQueue = W32Thread->MessageQueue;
else
{
if ( Desktop ) MsgQueue = Desktop->ActiveMessageQueue;
MsgQueue = Desktop->ActiveMessageQueue;
}
}
else