Ignore:
Timestamp:
Jul 6, 1999, 5:48:48 PM (26 years ago)
Author:
phaller
Message:

Add: HandleManager support for kernel objects, various fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/sec.cpp

    r97 r278  
    1 /* $Id: sec.cpp,v 1.2 1999-06-10 17:06:46 phaller Exp $ */
     1/* $Id: sec.cpp,v 1.3 1999-07-06 15:48:45 phaller Exp $ */
    22
    33/*
     
    305305    return STATUS_UNKNOWN_REVISION ;
    306306
    307   if ( (*lpbDaclPresent = (SE_DACL_PRESENT & pSecurityDescriptor->Control) ? 1 : 0) )
     307  *lpbDaclPresent = (SE_DACL_PRESENT & pSecurityDescriptor->Control);
     308  if (*lpbDaclPresent ? 1 : 0)
    308309  {
    309310    if ( SE_SELF_RELATIVE & pSecurityDescriptor->Control)
     
    378379    return STATUS_UNKNOWN_REVISION ;
    379380
    380   if ( (*lpbSaclPresent = (SE_SACL_PRESENT & pSecurityDescriptor->Control) ? 1 : 0) )
     381  *lpbSaclPresent = (SE_SACL_PRESENT & pSecurityDescriptor->Control);
     382  if (*lpbSaclPresent ? 1 : 0)
    381383  {
    382384    if ( SE_SELF_RELATIVE & pSecurityDescriptor->Control)
Note: See TracChangeset for help on using the changeset viewer.