svn commit: samba r6593 - in trunk/source/locking: .

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


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

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

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

Modified:
   trunk/source/locking/locking.c


Changeset:
Modified: trunk/source/locking/locking.c
===================================================================
--- trunk/source/locking/locking.c	2005-05-03 07:10:46 UTC (rev 6592)
+++ trunk/source/locking/locking.c	2005-05-03 07:27:38 UTC (rev 6593)
@@ -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