summaryrefslogtreecommitdiffstats
path: root/source/lib/ldb
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-02-13 12:42:28 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:17:55 -0500
commit05a23dd75655a80667627e00e0a441b54ec92b22 (patch)
tree79d2aefea4527684169902fe674a2a0e781378d0 /source/lib/ldb
parent5a7b2fccb3cdc6a849aedcd256eea86faec1d54c (diff)
downloadsamba-05a23dd75655a80667627e00e0a441b54ec92b22.tar.gz
samba-05a23dd75655a80667627e00e0a441b54ec92b22.tar.xz
samba-05a23dd75655a80667627e00e0a441b54ec92b22.zip
r21312: merge from SAMBA_4_0:
fix memory hierachy, and access to already freed memory metze
Diffstat (limited to 'source/lib/ldb')
-rw-r--r--source/lib/ldb/ldb_tdb/ldb_index.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/ldb/ldb_tdb/ldb_index.c b/source/lib/ldb/ldb_tdb/ldb_index.c
index 2c88d7e19db..672bc1f6259 100644
--- a/source/lib/ldb/ldb_tdb/ldb_index.c
+++ b/source/lib/ldb/ldb_tdb/ldb_index.c
@@ -337,7 +337,7 @@ static int ltdb_index_dn_leaf(struct ldb_module *module,
ldb_oom(module->ldb);
return -1;
}
- list->dn[0] = talloc_strdup(list, (char *)tree->u.equality.value.data);
+ list->dn[0] = talloc_strdup(list->dn, (char *)tree->u.equality.value.data);
if (list->dn[0] == NULL) {
ldb_oom(module->ldb);
return -1;