diff options
author | Jeremy Allison <jra@samba.org> | 2005-05-03 07:27:44 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:46 -0500 |
commit | 114067ced1d301a3c8b67aee0af0eab771d44dd4 (patch) | |
tree | 8fd2d80d763f92638e2a52f39079524a20eafc68 | |
parent | 0a65865bfed4bf54262052c3842a3fec90671e94 (diff) | |
download | samba-114067ced1d301a3c8b67aee0af0eab771d44dd4.tar.gz samba-114067ced1d301a3c8b67aee0af0eab771d44dd4.tar.bz2 samba-114067ced1d301a3c8b67aee0af0eab771d44dd4.zip |
r6594: Fix silly typo causing tdb to be freed twice.
Jeremy.
(This used to be commit 4f431dfc6b57e1609672c4daa53ab5d62613f6d1)
-rw-r--r-- | source3/locking/locking.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/locking/locking.c b/source3/locking/locking.c index f0a45c2bcb..3c5ab63b4a 100644 --- a/source3/locking/locking.c +++ b/source3/locking/locking.c @@ -357,7 +357,7 @@ BOOL locking_end(void) } if (deferred_open_tdb) { - if (tdb_close(tdb) != 0) + if (tdb_close(deferred_open_tdb) != 0) ret = False; } |