From 1ea36d092662577a0f79d8155e18b9a03bbda3df Mon Sep 17 00:00:00 2001 From: Ira Cooper Date: Wed, 19 Sep 2012 18:39:07 +0000 Subject: [PATCH] s3: Compound requests should continue processing. This patch addresses #9173. --- source3/smbd/smb2_server.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c index be7997f..32e25ba 100644 --- a/source3/smbd/smb2_server.c +++ b/source3/smbd/smb2_server.c @@ -2683,10 +2683,9 @@ NTSTATUS smbd_smb2_request_error_ex(struct smbd_smb2_request *req, } /* - * if a request fails, all other remaining - * compounded requests should fail too + * Note: Even if there is an error, continue to process the request. + * per MS-SMB2. */ - req->next_status = NT_STATUS_INVALID_PARAMETER; return smbd_smb2_request_done_ex(req, status, body, info, __location__); } -- 1.7.10.1