diff options
-rw-r--r-- | source3/passdb/pdb_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_interface.c b/source3/passdb/pdb_interface.c index 11b70f2bcb..e57ee7bbfe 100644 --- a/source3/passdb/pdb_interface.c +++ b/source3/passdb/pdb_interface.c @@ -2110,7 +2110,7 @@ NTSTATUS make_pdb_method( struct pdb_methods **methods ) { /* allocate memory for the structure as its own talloc CTX */ - *methods = talloc_zero(talloc_autofree_context(), struct pdb_methods); + *methods = talloc_zero(NULL, struct pdb_methods); if (*methods == NULL) { return NT_STATUS_NO_MEMORY; } |