summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2007-02-03 13:31:47 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:17:41 -0500
commit4c484662d63e1ce00afc9dc445579dc73122b360 (patch)
tree68488a7b60bbcfc2cf6afa7407fd6c1a9980d1d4 /source3
parentd4135a3bdbe70bf87632396b79af5b17c7da5dd5 (diff)
downloadsamba-4c484662d63e1ce00afc9dc445579dc73122b360.tar.gz
samba-4c484662d63e1ce00afc9dc445579dc73122b360.tar.bz2
samba-4c484662d63e1ce00afc9dc445579dc73122b360.zip
r21130: Don't mix SAFE_FREE() and TALLOC_FREE().
(This used to be commit 5c36d67d272a52f58532daa3c3c09b8f8b6a34e0)
Diffstat (limited to 'source3')
-rw-r--r--source3/nsswitch/winbindd_group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd_group.c b/source3/nsswitch/winbindd_group.c
index b04fb16390..51d595b947 100644
--- a/source3/nsswitch/winbindd_group.c
+++ b/source3/nsswitch/winbindd_group.c
@@ -162,7 +162,7 @@ static BOOL fill_passdb_alias_grmem(struct winbindd_domain *domain,
add_expanded_sid(&members[i], gr_mem, num_gr_mem);
}
- SAFE_FREE(members);
+ TALLOC_FREE(members);
if (*gr_mem != NULL) {
size_t len;