mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:51:58 +00:00
[BASESRV]
In BaseSrvGetNextVDMCommand, the VDM_FLAG_DONT_WAIT flag is enough to tell it not to create a wait handle. svn path=/trunk/; revision=67364
This commit is contained in:
parent
60eacc928e
commit
03c078dcc0
1 changed files with 1 additions and 2 deletions
|
@ -1068,8 +1068,7 @@ CSR_API(BaseSrvGetNextVDMCommand)
|
|||
}
|
||||
|
||||
/* There is no command yet */
|
||||
if ((GetNextVdmCommandRequest->VDMState & (VDM_FLAG_DONT_WAIT | VDM_FLAG_RETRY))
|
||||
!= (VDM_FLAG_DONT_WAIT | VDM_FLAG_RETRY))
|
||||
if (!(GetNextVdmCommandRequest->VDMState & VDM_FLAG_DONT_WAIT))
|
||||
{
|
||||
if (ConsoleRecord->ServerEvent)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue