fixed uninitialized variables warnings

svn path=/trunk/; revision=17151
This commit is contained in:
Thomas Bluemel 2005-08-07 09:48:38 +00:00
parent 1479011f30
commit a32178f6d9

View file

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