diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-02-13 16:48:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:10:06 -0500 |
commit | 5a92df31d69ff7b0f2de6564d644949c2906c8f1 (patch) | |
tree | a8983544df13268867fd98aab9b614db33a8266c | |
parent | e6d52c1e9d8cec7be6d552c2a67a392df21c3ec9 (diff) | |
download | samba-5a92df31d69ff7b0f2de6564d644949c2906c8f1.tar.gz samba-5a92df31d69ff7b0f2de6564d644949c2906c8f1.tar.xz samba-5a92df31d69ff7b0f2de6564d644949c2906c8f1.zip |
r13493: module_name and module_location are the same string. Fix a valgrind
error.
Volker
-rw-r--r-- | source/passdb/pdb_interface.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/passdb/pdb_interface.c b/source/passdb/pdb_interface.c index 04b2f4ca113..479ce18c05c 100644 --- a/source/passdb/pdb_interface.c +++ b/source/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; |