mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[KERNEL32]
Fix an infinite loop bug in CreateProcessInternalW. svn path=/branches/ntvdm/; revision=61909
This commit is contained in:
parent
8eb145a87c
commit
0d13dbf572
1 changed files with 1 additions and 1 deletions
|
@ -3198,7 +3198,7 @@ StartScan:
|
|||
/* Pick which kind of WOW mode we want to run in */
|
||||
VdmBinaryType = (dwCreationFlags &
|
||||
CREATE_SEPARATE_WOW_VDM) ?
|
||||
BINARY_TYPE_WOW : BINARY_TYPE_SEPARATE_WOW;
|
||||
BINARY_TYPE_SEPARATE_WOW : BINARY_TYPE_WOW;
|
||||
|
||||
/* Get all the VDM settings and current status */
|
||||
Status = BaseCheckVDM(VdmBinaryType,
|
||||
|
|
Loading…
Reference in a new issue