From 3b67210eec560d0c79b625ac11acb940e29fe8e0 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 13 Feb 2006 16:48:24 +0000 Subject: r13493: module_name and module_location are the same string. Fix a valgrind error. Volker (This used to be commit 5a92df31d69ff7b0f2de6564d644949c2906c8f1) --- source3/passdb/pdb_interface.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/passdb/pdb_interface.c b/source3/passdb/pdb_interface.c index 04b2f4ca11..479ce18c05 100644 --- a/source3/passdb/pdb_interface.c +++ b/source3/passdb/pdb_interface.c @@ -173,14 +173,16 @@ NTSTATUS make_pdb_method_name(struct pdb_methods **methods, const char *selected } DEBUG(5,("Found pdb backend %s\n", module_name)); - SAFE_FREE(module_name); if ( !NT_STATUS_IS_OK( nt_status = entry->init(methods, module_location) ) ) { DEBUG(0,("pdb backend %s did not correctly init (error was %s)\n", selected, nt_errstr(nt_status))); + SAFE_FREE(module_name); return nt_status; } + SAFE_FREE(module_name); + DEBUG(5,("pdb backend %s has a valid init\n", selected)); return nt_status; -- cgit