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

This commit is contained in:
Gerald Pfeifer 2015-09-11 21:31:12 +02:00 committed by Alexandre Julliard
parent 66694cc043
commit a818d5cab2

View file

@ -506,10 +506,10 @@ static unsigned char ace_flags_to_samba( BYTE flags )
return ret; return ret;
} }
#define GENERIC_ALL_ACCESS (1 << 28) #define GENERIC_ALL_ACCESS (1u << 28)
#define GENERIC_EXECUTE_ACCESS (1 << 29) #define GENERIC_EXECUTE_ACCESS (1u << 29)
#define GENERIC_WRITE_ACCESS (1 << 30) #define GENERIC_WRITE_ACCESS (1u << 30)
#define GENERIC_READ_ACCESS (1 << 31) #define GENERIC_READ_ACCESS (1u << 31)
static unsigned int access_mask_to_samba( DWORD mask ) static unsigned int access_mask_to_samba( DWORD mask )
{ {