svn commit: samba r19329 - in branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules: .

tridge at samba.org tridge at samba.org
Mon Oct 16 11:23:40 GMT 2006


Author: tridge
Date: 2006-10-16 11:23:40 +0000 (Mon, 16 Oct 2006)
New Revision: 19329

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=19329

Log:

fixed a leak in the password hash module

Modified:
   branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/password_hash.c


Changeset:
Modified: branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/password_hash.c
===================================================================
--- branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/password_hash.c	2006-10-16 11:12:13 UTC (rev 19328)
+++ branches/SAMBA_4_0/source/dsdb/samdb/ldb_modules/password_hash.c	2006-10-16 11:23:40 UTC (rev 19329)
@@ -501,7 +501,7 @@
 		return LDB_ERR_OPERATIONS_ERROR;
 	}
 
-	ac->dom_req->op.search.tree = ldb_parse_tree(ac->module->ldb, filter);
+	ac->dom_req->op.search.tree = ldb_parse_tree(ac->dom_req, filter);
 	if (ac->dom_req->op.search.tree == NULL) {
 		ldb_set_errstring(ac->module->ldb, "Invalid search filter");
 		talloc_free(ac->dom_req);



More information about the samba-cvs mailing list