summaryrefslogtreecommitdiff
path: root/source3/smbd/smb2_break.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2010-05-12 15:19:45 -0700
committerJeremy Allison <jra@samba.org>2010-05-12 15:19:45 -0700
commit1101c6214415675fbd32377d539276ca19c4407f (patch)
tree47df8ab4c8eed4449e25cb431c8898001c4981f3 /source3/smbd/smb2_break.c
parent9cddf891ad2a09ed1de83f3b51b4f2fc3e6855e8 (diff)
downloadsamba-1101c6214415675fbd32377d539276ca19c4407f.tar.gz
samba-1101c6214415675fbd32377d539276ca19c4407f.tar.bz2
samba-1101c6214415675fbd32377d539276ca19c4407f.zip
Pass more SMB2 oplock tests. Only oplock stream tests left to fix.
Jeremy.
Diffstat (limited to 'source3/smbd/smb2_break.c')
-rw-r--r--source3/smbd/smb2_break.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/smbd/smb2_break.c b/source3/smbd/smb2_break.c
index bd0fc566f0..a214da0f26 100644
--- a/source3/smbd/smb2_break.c
+++ b/source3/smbd/smb2_break.c
@@ -204,6 +204,12 @@ static struct tevent_req *smbd_smb2_oplock_break_send(TALLOC_CTX *mem_ctx,
fsp_str_dbg(fsp),
fsp->fnum ));
+ /* Are we awaiting a break message ? */
+ if (fsp->oplock_timeout == NULL) {
+ tevent_req_nterror(req, NT_STATUS_INVALID_OPLOCK_PROTOCOL);
+ return tevent_req_post(req, ev);
+ }
+
if ((fsp->sent_oplock_break == BREAK_TO_NONE_SENT) ||
(break_to_none)) {
result = remove_oplock(fsp);