mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
fixed uninitialized variables warnings
svn path=/trunk/; revision=17151
This commit is contained in:
parent
1479011f30
commit
a32178f6d9
1 changed files with 3 additions and 3 deletions
|
@ -568,9 +568,9 @@ QSI_DEF(SystemPathInformation)
|
|||
QSI_DEF(SystemProcessInformation)
|
||||
{
|
||||
ULONG ovlSize = 0, nThreads;
|
||||
PEPROCESS pr, syspr;
|
||||
PEPROCESS pr = NULL, syspr;
|
||||
unsigned char *pCur;
|
||||
NTSTATUS Status;
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
|
||||
_SEH_TRY
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue