Fixed the return value in KeRundownQueue if the queue is empty. This should fix bug 751.

svn path=/trunk/; revision=17622
This commit is contained in:
Hartmut Birr 2005-09-03 18:00:54 +00:00
parent 2cea7b7c46
commit b10d2b80c1

View file

@ -344,7 +344,7 @@ KeRundownQueue(IN PKQUEUE Queue)
if (FirstEntry == &Queue->EntryListHead) {
/* It is, so don't return anything */
EnumEntry = NULL;
FirstEntry = NULL;
} else {