ntdll: Fix NtAccessCheck for NULL, but present SACLs and DACLs.

Juan Lang juan.lang at gmail.com
Mon Oct 15 16:29:10 CDT 2007


Hi Rob,

-        sd.sacl_len = (present ? sacl->AclSize : 0);
+        sd.sacl_len = ((present && dacl) ? sacl->AclSize : 0);

Shouldn't that be ((present && sacl) ? sacl->AclSize : 0); ?
--Juan



More information about the wine-devel mailing list