Commit a818d5ca authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

netapi32: Avoid shift overflow for GENERIC_READ_ACCESS and friends. friends.

parent 66694cc0
......@@ -506,10 +506,10 @@ static unsigned char ace_flags_to_samba( BYTE flags )
return ret;
}
#define GENERIC_ALL_ACCESS (1 << 28)
#define GENERIC_EXECUTE_ACCESS (1 << 29)
#define GENERIC_WRITE_ACCESS (1 << 30)
#define GENERIC_READ_ACCESS (1 << 31)
#define GENERIC_ALL_ACCESS (1u << 28)
#define GENERIC_EXECUTE_ACCESS (1u << 29)
#define GENERIC_WRITE_ACCESS (1u << 30)
#define GENERIC_READ_ACCESS (1u << 31)
static unsigned int access_mask_to_samba( DWORD mask )
{
......
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