summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-05-03 07:27:44 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:56:46 -0500
commit114067ced1d301a3c8b67aee0af0eab771d44dd4 (patch)
tree8fd2d80d763f92638e2a52f39079524a20eafc68 /source3
parent0a65865bfed4bf54262052c3842a3fec90671e94 (diff)
downloadsamba-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)
Diffstat (limited to 'source3')
-rw-r--r--source3/locking/locking.c2
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;
}