Author: ion
Date: Mon Jul 17 07:49:40 2006
New Revision: 23114
URL:
http://svn.reactos.org/svn/reactos?rev=23114&view=rev
Log:
- Fix two small bugs in NtQueryDirectoryObject.
- RDISK Count, Windowstation list enumeration now work on startup.
- Explorer's object viewer now works again.
Modified:
trunk/reactos/ntoskrnl/ob/obdir.c
Modified: trunk/reactos/ntoskrnl/ob/obdir.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ob/obdir.c?rev=23…
==============================================================================
--- trunk/reactos/ntoskrnl/ob/obdir.c (original)
+++ trunk/reactos/ntoskrnl/ob/obdir.c Mon Jul 17 07:49:40 2006
@@ -551,6 +551,9 @@
DirectoryInfo->TypeName.Buffer = ObjectHeader->
Type->Name.Buffer;
+ /* Set success */
+ Status = STATUS_SUCCESS;
+
/* Increase statistics */
TotalLength += Length;
DirectoryInfo++;
@@ -562,10 +565,10 @@
/* Increase the key by one */
SkipEntries++;
}
- }
-
- /* Move to the next directory */
- Entry = Entry->ChainLink;
+
+ /* Move to the next directory */
+ Entry = Entry->ChainLink;
+ }
}
Quickie: