projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1479011
)
fixed uninitialized variables warnings
author
Thomas Bluemel
<thomas@reactsoft.com>
Sun, 7 Aug 2005 09:48:38 +0000
(09:48 +0000)
committer
Thomas 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
patch
|
blob
|
history
diff --git
a/reactos/ntoskrnl/ex/sysinfo.c
b/reactos/ntoskrnl/ex/sysinfo.c
index
1127b26
..
fa60ad1
100644
(file)
--- a/
reactos/ntoskrnl/ex/sysinfo.c
+++ b/
reactos/ntoskrnl/ex/sysinfo.c
@@
-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
{