fixed uninitialized variables warnings
authorThomas Bluemel <thomas@reactsoft.com>
Sun, 7 Aug 2005 09:48:38 +0000 (09:48 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Sun, 7 Aug 2005 09:48:38 +0000 (09:48 +0000)
svn path=/trunk/; revision=17151

reactos/ntoskrnl/ex/sysinfo.c

index 1127b26..fa60ad1 100644 (file)
@@ -567,10 +567,10 @@ QSI_DEF(SystemPathInformation)
 /* Class 5 - Process Information */
 QSI_DEF(SystemProcessInformation)
 {
-       ULONG ovlSize=0, nThreads;
-       PEPROCESS pr, syspr;
+       ULONG ovlSize = 0, nThreads;
+       PEPROCESS pr = NULL, syspr;
        unsigned char *pCur;
-       NTSTATUS Status;
+       NTSTATUS Status = STATUS_SUCCESS;
 
        _SEH_TRY
        {