mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[SAMSRV]
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user