svn commit: samba r6594 - in branches/SAMBA_3_0/source/locking: .

jra at samba.org jra at samba.org
Tue May 3 07:27:49 GMT 2005


Author: jra
Date: 2005-05-03 07:27:44 +0000 (Tue, 03 May 2005)
New Revision: 6594

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

Log:
Fix silly typo causing tdb to be freed twice.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/locking/locking.c


Changeset:
Modified: branches/SAMBA_3_0/source/locking/locking.c
===================================================================
--- branches/SAMBA_3_0/source/locking/locking.c	2005-05-03 07:27:38 UTC (rev 6593)
+++ branches/SAMBA_3_0/source/locking/locking.c	2005-05-03 07:27:44 UTC (rev 6594)
@@ -357,7 +357,7 @@
 	}
 
 	if (deferred_open_tdb) {
-		if (tdb_close(tdb) != 0)
+		if (tdb_close(deferred_open_tdb) != 0)
 			ret = False;
 	}
 		



More information about the samba-cvs mailing list