mirror of
https://github.com/reactos/reactos.git
synced 2025-06-01 07:28:19 +00:00
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:
parent
2cea7b7c46
commit
b10d2b80c1
1 changed files with 1 additions and 1 deletions
|
@ -344,7 +344,7 @@ KeRundownQueue(IN PKQUEUE Queue)
|
|||
if (FirstEntry == &Queue->EntryListHead) {
|
||||
|
||||
/* It is, so don't return anything */
|
||||
EnumEntry = NULL;
|
||||
FirstEntry = NULL;
|
||||
|
||||
} else {
|
||||
|
||||
|
|
Loading…
Reference in a new issue