Commit 7bd0cdaf authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Use PROT_NONE instead of 0.

parent 2ba3d3ac
......@@ -443,6 +443,7 @@ static int VIRTUAL_GetUnixProt( BYTE vprot )
if (vprot & VPROT_WRITECOPY) prot |= PROT_WRITE;
if (vprot & VPROT_EXEC) prot |= PROT_EXEC;
}
if (!prot) prot = PROT_NONE;
return prot;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment