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 */
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
{