Fixed the return value in KeRundownQueue if the queue is empty. This should fix bug 751.
Modified: trunk/reactos/ntoskrnl/ke/queue.c
--- trunk/reactos/ntoskrnl/ke/queue.c 2005-09-03 17:40:33 UTC (rev 17621) +++ trunk/reactos/ntoskrnl/ke/queue.c 2005-09-03 18:00:54 UTC (rev 17622) @@ -344,7 +344,7 @@
if (FirstEntry == &Queue->EntryListHead) { /* It is, so don't return anything */
- EnumEntry = NULL;
+ FirstEntry = NULL;
} else {