SepCheckAcl

UINT8 __stdcall SepCheckAcl(PACL Acl, UINT64 Length){
  VOID *v2; 
  UINT8 result; 

  if( (unsigned int)Length < 8 || (_DWORD)Length != Acl->AclSize )
    return 0;
  RtlValidAcl(Acl, (VOID *)Length, v2);
  return result;
}

Referenced by:

SeCaptureAcl