From: Stefan Metzmacher Date: Tue, 7 Aug 2012 10:30:54 +0000 (+0200) Subject: s3:smb2_server: make use of helper macros in smbd_smb2_request_validate() X-Git-Tag: ldb-1.1.10~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=efaea8e0e1ca389ac7bd82f2d9a3401f92094fe4;p=thirdparty%2Fsamba.git s3:smb2_server: make use of helper macros in smbd_smb2_request_validate() metze --- diff --git a/source3/smbd/smb2_server.c b/source3/smbd/smb2_server.c index 4937f4bcbf7..2b32407aad7 100644 --- a/source3/smbd/smb2_server.c +++ b/source3/smbd/smb2_server.c @@ -590,18 +590,20 @@ static NTSTATUS smbd_smb2_request_validate(struct smbd_smb2_request *req) } for (idx=1; idx < count; idx += SMBD_SMB2_NUM_IOV_PER_REQ) { + struct iovec *hdr = SMBD_SMB2_IDX_HDR_IOV(req,in,idx); + struct iovec *body = SMBD_SMB2_IDX_BODY_IOV(req,in,idx); const uint8_t *inhdr = NULL; uint32_t flags; - if (req->in.vector[idx].iov_len != SMB2_HDR_BODY) { + if (hdr->iov_len != SMB2_HDR_BODY) { return NT_STATUS_INVALID_PARAMETER; } - if (req->in.vector[idx+1].iov_len < 2) { + if (body->iov_len < 2) { return NT_STATUS_INVALID_PARAMETER; } - inhdr = (const uint8_t *)req->in.vector[idx].iov_base; + inhdr = (const uint8_t *)hdr->iov_base; /* Check the SMB2 header */ if (IVAL(inhdr, SMB2_HDR_PROTOCOL_ID) != SMB2_MAGIC) {