ntdll: Fix incorrect value passed to RtlDeleteTimerQueueEx.

oldstable
Sebastian Lackner 2014-01-30 03:56:19 +01:00 committed by Alexandre Julliard
parent c1b3b58eac
commit 23adc9aaed
1 changed files with 1 additions and 1 deletions

View File

@ -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;