diff options
author | Volker Lendecke <vl@samba.org> | 2008-01-06 14:21:25 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-01-10 13:19:58 +0100 |
commit | 3cc3b9e1879d3d9714ac2914364418a140e8389c (patch) | |
tree | 3f2ac5521b53d3209df29c8547dc39a07a1e8285 /source3/locking | |
parent | 83b1751615ef3892d44c7826228fbb3b0826d2b2 (diff) | |
download | samba-3cc3b9e1879d3d9714ac2914364418a140e8389c.tar.gz samba-3cc3b9e1879d3d9714ac2914364418a140e8389c.tar.bz2 samba-3cc3b9e1879d3d9714ac2914364418a140e8389c.zip |
use talloc_tos in a few more places
(This used to be commit 65dd869bea351010c67f02046ae4134bdada1a4c)
Diffstat (limited to 'source3/locking')
-rw-r--r-- | source3/locking/locking.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/locking/locking.c b/source3/locking/locking.c index 2ec8cd2938..ce7ba8fa66 100644 --- a/source3/locking/locking.c +++ b/source3/locking/locking.c @@ -925,7 +925,7 @@ bool get_delete_on_close_flag(struct file_id id) bool result; struct share_mode_lock *lck; - if (!(lck = fetch_share_mode_unlocked(NULL, id, NULL, NULL))) { + if (!(lck = fetch_share_mode_unlocked(talloc_tos(), id, NULL, NULL))) { return False; } result = lck->delete_on_close; @@ -1328,7 +1328,7 @@ bool set_delete_on_close(files_struct *fsp, bool delete_on_close, UNIX_USER_TOKE return True; } - lck = get_share_mode_lock(NULL, fsp->file_id, NULL, NULL); + lck = get_share_mode_lock(talloc_tos(), fsp->file_id, NULL, NULL); if (lck == NULL) { return False; } |