From: Matthias Dieter Wallnöfer Date: Sun, 11 Apr 2010 10:56:50 +0000 (+0200) Subject: s4:samdb_server_site_dn - free unused DNs in the right way X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=568ca2433d0d2292047979abbfcb03543bb27a67;p=metze%2Fsamba%2Fwip.git s4:samdb_server_site_dn - free unused DNs in the right way --- diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index b469b062326e..c6870da234b2 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -1469,16 +1469,16 @@ struct ldb_dn *samdb_server_site_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx struct ldb_dn *server_site_dn; /* TODO: there must be a saner way to do this!! */ - server_dn = samdb_server_dn(ldb, mem_ctx); if (!server_dn) return NULL; servers_dn = ldb_dn_get_parent(mem_ctx, server_dn); + talloc_free(server_dn); if (!servers_dn) return NULL; server_site_dn = ldb_dn_get_parent(mem_ctx, servers_dn); + talloc_free(servers_dn); - talloc_free(server_dn); return server_site_dn; }