summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2005-05-10 16:24:42 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:56:52 -0500
commit27bef67b3a8d8ae5f800c8477473ad6258391293 (patch)
tree002e1fcca903eeac912f5a532e8b7b79a7bdcf68 /source3
parentdba540214ad42ed2fb520d6b831aaa36fcc0c848 (diff)
downloadsamba-27bef67b3a8d8ae5f800c8477473ad6258391293.tar.gz
samba-27bef67b3a8d8ae5f800c8477473ad6258391293.tar.bz2
samba-27bef67b3a8d8ae5f800c8477473ad6258391293.zip
r6713: another talloc() fix. This time in pdb_xml.c
(This used to be commit b0289d22587b0b532921a9b18c1efb767029bdcc)
Diffstat (limited to 'source3')
-rw-r--r--source3/passdb/pdb_xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_xml.c b/source3/passdb/pdb_xml.c
index 2a21fc8c9f..d40a5731a4 100644
--- a/source3/passdb/pdb_xml.c
+++ b/source3/passdb/pdb_xml.c
@@ -563,7 +563,7 @@ static NTSTATUS xmlsam_init(PDB_CONTEXT * pdb_context, PDB_METHODS ** pdb_method
(*pdb_method)->delete_group_mapping_entry = NULL;
(*pdb_method)->enum_group_mapping = NULL;
- data = talloc(pdb_context->mem_ctx, sizeof(pdb_xml));
+ data = _talloc(pdb_context->mem_ctx, sizeof(pdb_xml));
data->location = talloc_strdup(pdb_context->mem_ctx, (location ? location : "passdb.xml"));
data->pwent = NULL;
data->written = 0;