diff options
author | Volker Lendecke <vl@samba.org> | 2014-07-03 14:03:12 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-07-04 06:31:16 +0200 |
commit | 5a1fb2eb0dc849bba5f74ef874d7629cd611929f (patch) | |
tree | 13094eb5f609b7d9caa52a632b73ad4f182e6bc2 /source3/smbd/blocking.c | |
parent | 6f8fd3d5ab206838a70bdcbfc3386dc668676d70 (diff) | |
download | samba-5a1fb2eb0dc849bba5f74ef874d7629cd611929f.tar.gz samba-5a1fb2eb0dc849bba5f74ef874d7629cd611929f.tar.xz samba-5a1fb2eb0dc849bba5f74ef874d7629cd611929f.zip |
smbd: brl_lock_cancel does not need "blr" anymore
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/smbd/blocking.c')
-rw-r--r-- | source3/smbd/blocking.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/source3/smbd/blocking.c b/source3/smbd/blocking.c index 43fc2a17bf..47ac4cc402 100644 --- a/source3/smbd/blocking.c +++ b/source3/smbd/blocking.c @@ -725,8 +725,7 @@ void smbd_cancel_pending_lock_requests_by_fid(files_struct *fsp, messaging_server_id(sconn->msg_ctx), blr->offset, blr->count, - blr->lock_flav, - blr); + blr->lock_flav); /* We're closing the file fsp here, so ensure * we don't have a dangling pointer. */ @@ -768,8 +767,7 @@ void remove_pending_lock_requests_by_mid_smb1( messaging_server_id(sconn->msg_ctx), blr->offset, blr->count, - blr->lock_flav, - blr); + blr->lock_flav); TALLOC_FREE(br_lck); } @@ -867,8 +865,7 @@ void process_blocking_lock_queue(struct smbd_server_connection *sconn) messaging_server_id(sconn->msg_ctx), blr->offset, blr->count, - blr->lock_flav, - blr); + blr->lock_flav); } TALLOC_FREE(br_lck); |