From 0b8b9aed34b9ad80d36860840e024330ae7cd671 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Thu, 21 Oct 2010 09:03:31 +0200 Subject: ldb:ldb_tdb/ldb_cache.c - remove a superflous "talloc_free" Didn't realise that this is already called by "ltdb_attributes_unload". --- source4/lib/ldb/ldb_tdb/ldb_cache.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source4/lib') diff --git a/source4/lib/ldb/ldb_tdb/ldb_cache.c b/source4/lib/ldb/ldb_tdb/ldb_cache.c index f318166ceb..697f7427a4 100644 --- a/source4/lib/ldb/ldb_tdb/ldb_cache.c +++ b/source4/lib/ldb/ldb_tdb/ldb_cache.c @@ -348,10 +348,8 @@ int ltdb_cache_load(struct ldb_module *module) talloc_free(ltdb->cache->last_attribute.name); memset(<db->cache->last_attribute, 0, sizeof(ltdb->cache->last_attribute)); - ltdb_attributes_unload(module); - talloc_free(ltdb->cache->indexlist); - talloc_free(ltdb->cache->attributes); + ltdb_attributes_unload(module); /* calls internally "talloc_free" */ ltdb->cache->indexlist = ldb_msg_new(ltdb->cache); ltdb->cache->attributes = ldb_msg_new(ltdb->cache); -- cgit