diff options
author | Volker Lendecke <vl@samba.org> | 2010-06-12 11:55:42 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-06-12 15:42:52 +0200 |
commit | dd192bb649341d0f2bd91350c7efe98dbdb47172 (patch) | |
tree | 272980c3fd7e81f4b04e8142ec930c9e74afedbe /source3/smbd | |
parent | 73955a2d92bff0dd78b42f9ec34835fb6a78583a (diff) | |
download | samba-dd192bb649341d0f2bd91350c7efe98dbdb47172.tar.gz samba-dd192bb649341d0f2bd91350c7efe98dbdb47172.tar.bz2 samba-dd192bb649341d0f2bd91350c7efe98dbdb47172.zip |
s3: Explicitly pass sconn to is_valid_writeX_buffer
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/process.c | 3 | ||||
-rw-r--r-- | source3/smbd/reply.c | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 629465cc83..c4e13ecd6d 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -263,7 +263,8 @@ static NTSTATUS receive_smb_raw_talloc_partial_read(TALLOC_CTX *mem_ctx, * valid writeX call. */ - if (is_valid_writeX_buffer((uint8_t *)writeX_header)) { + if (is_valid_writeX_buffer(smbd_server_conn, + (uint8_t *)writeX_header)) { /* * If the data offset is beyond what * we've read, drain the extra bytes. diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 1c7d0d2bcd..cf4efde013 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -4239,13 +4239,13 @@ strict_unlock: (2*14) + /* word count (including bcc) */ \ 1 /* pad byte */) -bool is_valid_writeX_buffer(const uint8_t *inbuf) +bool is_valid_writeX_buffer(struct smbd_server_connection *sconn, + const uint8_t *inbuf) { size_t numtowrite; connection_struct *conn = NULL; unsigned int doff = 0; size_t len = smb_len_large(inbuf); - struct smbd_server_connection *sconn = smbd_server_conn; if (is_encrypted_packet(inbuf)) { /* Can't do this on encrypted |