diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/process.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 4d34bcf858..40009c8a3c 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -2688,6 +2688,7 @@ static void smbd_echo_reader(struct tevent_context *ev, size_t unread, num_pending; NTSTATUS status; struct iovec *tmp; + size_t iov_len; uint32_t seqnum = 0; bool reply; bool ok; @@ -2730,7 +2731,7 @@ static void smbd_echo_reader(struct tevent_context *ev, 0 /* timeout */, &unread, &encrypted, - &state->pending[num_pending].iov_len, + &iov_len, &seqnum, false /* trusted_channel*/); if (!NT_STATUS_IS_OK(status)) { @@ -2738,6 +2739,7 @@ static void smbd_echo_reader(struct tevent_context *ev, (int)sys_getpid(), nt_errstr(status))); exit(1); } + state->pending[num_pending].iov_len = iov_len; ok = smbd_unlock_socket_internal(sconn); if (!ok) { |