ntdll: Fix incorrect value passed to RtlDeleteTimerQueueEx.
This commit is contained in:
parent
c1b3b58eac
commit
23adc9aaed
|
@ -889,7 +889,7 @@ static struct timer_queue *get_timer_queue(HANDLE TimerQueue)
|
|||
(void **) &default_timer_queue, q, NULL);
|
||||
if (p)
|
||||
/* Got beat to the punch. */
|
||||
RtlDeleteTimerQueueEx(p, NULL);
|
||||
RtlDeleteTimerQueueEx(q, NULL);
|
||||
}
|
||||
}
|
||||
return default_timer_queue;
|
||||
|
|
Loading…
Reference in New Issue