summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_group.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-06-08 19:43:01 +0200
committerVolker Lendecke <vl@samba.org>2009-06-08 21:14:10 +0200
commita51e6ce43cbc576a1352b0eccdab2f5c7f1bc2c2 (patch)
tree5a0c92a72764d1724d2ee23c94df7271c8e54598 /source3/winbindd/winbindd_group.c
parent5ea88420da78589b3d52addcd8cce119968f0f73 (diff)
downloadsamba-a51e6ce43cbc576a1352b0eccdab2f5c7f1bc2c2.tar.gz
samba-a51e6ce43cbc576a1352b0eccdab2f5c7f1bc2c2.tar.bz2
samba-a51e6ce43cbc576a1352b0eccdab2f5c7f1bc2c2.zip
Pass a talloc_ctx to pdb_enum_aliasmem
Diffstat (limited to 'source3/winbindd/winbindd_group.c')
-rw-r--r--source3/winbindd/winbindd_group.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_group.c b/source3/winbindd/winbindd_group.c
index e31a55b0cf..4db2c56b8f 100644
--- a/source3/winbindd/winbindd_group.c
+++ b/source3/winbindd/winbindd_group.c
@@ -157,8 +157,8 @@ static bool fill_passdb_alias_grmem(struct winbindd_domain *domain,
*gr_mem = NULL;
*gr_mem_len = 0;
- if (!NT_STATUS_IS_OK(pdb_enum_aliasmem(group_sid, &members,
- &num_members)))
+ if (!NT_STATUS_IS_OK(pdb_enum_aliasmem(group_sid, talloc_tos(),
+ &members, &num_members)))
return True;
for (i=0; i<num_members; i++) {