Fixed IsValidAcl recursion bug (#463) using PR from @rul3rst4

nullableenabled
David Hall 2024-05-06 07:16:33 -06:00
parent 7919216bbe
commit 01114f73b0
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ public static class WinNTExtensions
/// <summary>Validates an access control list (ACL).</summary>
/// <param name="pAcl">The pointer to the ACL structure to query.</param>
/// <returns><c>true</c> if the ACL is valid; otherwise, <c>false</c>.</returns>
public static bool IsValidAcl(this PACL pAcl) => IsValidAcl(pAcl);
public static bool IsValidAcl(this PACL pAcl) => AdvApi32.IsValidAcl(pAcl);
/// <summary>Determines whether the components of a security descriptor are valid.</summary>
/// <param name="pSD">The pointer to the SECURITY_DESCRIPTOR structure to query.</param>