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;
        }
                

Reply via email to