mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 23:15:39 +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 */
|
/* There is no command yet */
|
||||||
if ((GetNextVdmCommandRequest->VDMState & (VDM_FLAG_DONT_WAIT | VDM_FLAG_RETRY))
|
if (!(GetNextVdmCommandRequest->VDMState & VDM_FLAG_DONT_WAIT))
|
||||||
!= (VDM_FLAG_DONT_WAIT | VDM_FLAG_RETRY))
|
|
||||||
{
|
{
|
||||||
if (ConsoleRecord->ServerEvent)
|
if (ConsoleRecord->ServerEvent)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue