mirror of
https://github.com/reactos/reactos.git
synced 2025-04-30 19:19:00 +00:00
[KERNEL32] CreateProcessInternalW: Initialize uninitialized ClientId.
This situation happens when either of the two "goto VdmShortCircuit;" code paths are taken when starting a DOS or WoW16 app.
This commit is contained in:
parent
1cbcc4ac5c
commit
cbae866df3
1 changed files with 1 additions and 0 deletions
|
@ -2353,6 +2353,7 @@ CreateProcessInternalW(IN HANDLE hUserToken,
|
||||||
SectionHandle = NULL;
|
SectionHandle = NULL;
|
||||||
ProcessHandle = NULL;
|
ProcessHandle = NULL;
|
||||||
ThreadHandle = NULL;
|
ThreadHandle = NULL;
|
||||||
|
ClientId.UniqueProcess = ClientId.UniqueThread = 0;
|
||||||
BaseAddress = (PVOID)1;
|
BaseAddress = (PVOID)1;
|
||||||
|
|
||||||
/* Zero out initial SxS and Application Compatibility state */
|
/* Zero out initial SxS and Application Compatibility state */
|
||||||
|
|
Loading…
Reference in a new issue