From 955a80297f7a0885d98c636d08558e6cbd134bbe Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Tue, 10 Jan 2006 00:00:14 +0000 Subject: [PATCH] Don't remove the WaitEntry twice (in KiInsertQueue). svn path=/trunk/; revision=20761 --- reactos/ntoskrnl/ke/queue.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/reactos/ntoskrnl/ke/queue.c b/reactos/ntoskrnl/ke/queue.c index 1bccc288b1c..5dd7bce60ab 100644 --- a/reactos/ntoskrnl/ke/queue.c +++ b/reactos/ntoskrnl/ke/queue.c @@ -470,9 +470,6 @@ KiInsertQueue(IN PKQUEUE Queue, Queue->CurrentCount++; Thread->WaitStatus = (NTSTATUS)Entry; - /* Remove the thread from its wait list */ - RemoveEntryList(&Thread->WaitListEntry); - /* Check if there's a Thread Timer */ if (Thread->Timer.Header.Inserted) { -- 2.17.1