mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
ntdll: Fix ProcessExecuteFlag logic.
This commit is contained in:
parent
89d4402cc5
commit
137799cbfc
@ -416,10 +416,10 @@ NTSTATUS WINAPI NtSetInformationProcess(
|
||||
switch (*(ULONG *)ProcessInformation & (MEM_EXECUTE_OPTION_ENABLE|MEM_EXECUTE_OPTION_DISABLE))
|
||||
{
|
||||
case MEM_EXECUTE_OPTION_ENABLE:
|
||||
enable = FALSE;
|
||||
enable = TRUE;
|
||||
break;
|
||||
case MEM_EXECUTE_OPTION_DISABLE:
|
||||
enable = TRUE;
|
||||
enable = FALSE;
|
||||
break;
|
||||
default:
|
||||
return STATUS_INVALID_PARAMETER;
|
||||
|
Loading…
Reference in New Issue
Block a user