Commit 23adc9aa authored by Sebastian Lackner's avatar Sebastian Lackner Committed by Alexandre Julliard

ntdll: Fix incorrect value passed to RtlDeleteTimerQueueEx.

parent c1b3b58e
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment