SamrDeleteAlias: Dereference the AliasHandle parameter properly. All SamrDelete functions use a pointer to the handle. The other SamrDelete functions do it right.

svn path=/trunk/; revision=59140
This commit is contained in:
Eric Kohl
2013-06-02 10:45:48 +00:00
parent 4bea75236e
commit e10dffc51f
+1 -1
View File
@@ -4679,7 +4679,7 @@ SamrDeleteAlias(IN OUT SAMPR_HANDLE *AliasHandle)
NTSTATUS Status;
/* Validate the alias handle */
Status = SampValidateDbObject(AliasHandle,
Status = SampValidateDbObject(*AliasHandle,
SamDbAliasObject,
DELETE,
&AliasObject);