diff options
author | Volker Lendecke <vl@samba.org> | 2008-02-04 21:05:41 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-02-04 21:05:41 +0100 |
commit | b361956942618ec2f7c2efc60cb190858adbc516 (patch) | |
tree | bac3c4bc6749507efbf028d261cfba524a186639 /source3/libads | |
parent | 2762b9a97582b9b28fd5985ba8e3d0299126820e (diff) | |
download | samba-b361956942618ec2f7c2efc60cb190858adbc516.tar.gz samba-b361956942618ec2f7c2efc60cb190858adbc516.tar.bz2 samba-b361956942618ec2f7c2efc60cb190858adbc516.zip |
str_list_free is not needed anymore
(This used to be commit feddc1447d585fd108d22a36bccc576fa81197ef)
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ldap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index ef6feb8ee0..d6b9ba622b 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -801,7 +801,7 @@ done: } /* if/when we decide to utf8-encode attrs, take out this next line */ - str_list_free(&search_attrs); + TALLOC_FREE(search_attrs); return ADS_ERROR(rc); } @@ -998,7 +998,7 @@ ADS_STATUS ads_do_search_all_fn(ADS_STRUCT *ads, const char *bind_path, done: talloc_destroy(ctx); /* if/when we decide to utf8-encode attrs, take out this next line */ - str_list_free(&search_attrs); + TALLOC_FREE(search_attrs); return ADS_ERROR(rc); } /** |