Fixed recursive bug in WinNTExtensions.IsValidSecurityDescriptor

pull/299/head
dahall 2022-03-25 10:09:00 -06:00
parent 0ec8736cd8
commit 4a718b12df
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ namespace Vanara.PInvoke
/// <c>true</c> if the components of the security descriptor are valid. If any of the components of the security descriptor are not
/// valid, the return value is <c>false</c>.
/// </returns>
public static bool IsValidSecurityDescriptor(this PSECURITY_DESCRIPTOR pSD) => IsValidSecurityDescriptor(pSD);
public static bool IsValidSecurityDescriptor(this PSECURITY_DESCRIPTOR pSD) => AdvApi32.IsValidSecurityDescriptor(pSD);
/// <summary>Gets the size, in bytes, of an ACE.</summary>
/// <param name="pAce">The pointer to the ACE structure to query.</param>