[ros-diffs] [hbirr] 17622: Fixed the return value in KeRundownQueue if the queue is empty. This should fix bug 751.

hbirr at svn.reactos.com hbirr at svn.reactos.com
Sat Sep 3 20:00:58 CEST 2005


Fixed the return value in KeRundownQueue if the queue is empty. This
should fix bug 751.
Modified: trunk/reactos/ntoskrnl/ke/queue.c
  _____  

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 {
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.reactos.org/pipermail/ros-diffs/attachments/20050903/e39d8c6f/attachment.html


More information about the Ros-diffs mailing list