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
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue