diff options
author | Volker Lendecke <vl@samba.org> | 2009-06-08 19:43:01 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-06-08 21:14:10 +0200 |
commit | a51e6ce43cbc576a1352b0eccdab2f5c7f1bc2c2 (patch) | |
tree | 5a0c92a72764d1724d2ee23c94df7271c8e54598 /source3/winbindd | |
parent | 5ea88420da78589b3d52addcd8cce119968f0f73 (diff) | |
download | samba-a51e6ce43cbc576a1352b0eccdab2f5c7f1bc2c2.tar.gz samba-a51e6ce43cbc576a1352b0eccdab2f5c7f1bc2c2.tar.bz2 samba-a51e6ce43cbc576a1352b0eccdab2f5c7f1bc2c2.zip |
Pass a talloc_ctx to pdb_enum_aliasmem
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_group.c | 4 |
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++) { |