summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-10-06 06:42:05 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:20:35 -0500
commitf1f807e66bba73dcb2eb4b1f923167815908a77d (patch)
treede2efaa3d26dd52585db075258460708d092a74a /source4/lib/ldb/common
parent36246a191c08a869dd3a8e509fe96f3c5c6bfc23 (diff)
downloadsamba-f1f807e66bba73dcb2eb4b1f923167815908a77d.tar.gz
samba-f1f807e66bba73dcb2eb4b1f923167815908a77d.tar.bz2
samba-f1f807e66bba73dcb2eb4b1f923167815908a77d.zip
r19113: fixed another checker warning.
(This used to be commit d12550af01f8d4c135fbf6f429852c31570ec92b)
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r--source4/lib/ldb/common/ldb_dn.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/lib/ldb/common/ldb_dn.c b/source4/lib/ldb/common/ldb_dn.c
index f9b044d5b8..e0ef29ccfd 100644
--- a/source4/lib/ldb/common/ldb_dn.c
+++ b/source4/lib/ldb/common/ldb_dn.c
@@ -597,6 +597,7 @@ struct ldb_dn *ldb_dn_casefold(struct ldb_context *ldb, const struct ldb_dn *edn
struct ldb_dn_component dc;
const struct ldb_attrib_handler *h;
+ memset(&dc, 0, sizeof(dc));
dc.name = ldb_attr_casefold(cedn, edn->components[i].name);
if (!dc.name) {
talloc_free(cedn);