mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
fixed uninitialized variables warning
svn path=/trunk/; revision=13164
This commit is contained in:
parent
5be65d6f1d
commit
0d3598e98b
1 changed files with 2 additions and 2 deletions
|
@ -1496,9 +1496,9 @@ NtQueryInformationProcess(IN HANDLE ProcessHandle,
|
|||
*/
|
||||
if(Process->Peb != NULL)
|
||||
{
|
||||
PRTL_USER_PROCESS_PARAMETERS ProcParams;
|
||||
PRTL_USER_PROCESS_PARAMETERS ProcParams = NULL;
|
||||
UNICODE_STRING LocalDest;
|
||||
ULONG ImagePathLen;
|
||||
ULONG ImagePathLen = 0;
|
||||
PUNICODE_STRING DstPath = (PUNICODE_STRING)ProcessInformation;
|
||||
|
||||
/* we need to attach to the process to make sure we're in the right context! */
|
||||
|
|
Loading…
Reference in a new issue