summaryrefslogtreecommitdiff
path: root/source3/smbd/blocking.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-11-03 21:55:05 +0100
committerVolker Lendecke <vl@samba.org>2008-11-04 20:52:06 +0100
commitb8125663d90d9748b71a25a06a357167958dd18e (patch)
tree52144bf1e71acf4d77f81cdb66c3878bc984d714 /source3/smbd/blocking.c
parente4897a5376309bd73727f4130bf9bc6170158a6f (diff)
downloadsamba-b8125663d90d9748b71a25a06a357167958dd18e.tar.gz
samba-b8125663d90d9748b71a25a06a357167958dd18e.tar.bz2
samba-b8125663d90d9748b71a25a06a357167958dd18e.zip
Make "inbuf" a talloc child of "smb_request" for normal smb requests
This is necessary if we want to keep the whole smb_request for deferred ops. The explicit settings of req->inbuf will be removed once all those deferring operations are converted to store the whole request and not just the inbuf.
Diffstat (limited to 'source3/smbd/blocking.c')
-rw-r--r--source3/smbd/blocking.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbd/blocking.c b/source3/smbd/blocking.c
index 78a63dcbb2..f4e2b69d6b 100644
--- a/source3/smbd/blocking.c
+++ b/source3/smbd/blocking.c
@@ -263,6 +263,7 @@ static void reply_lockingX_success(blocking_lock_record *blr)
}
init_smb_request(req, (uint8 *)blr->inbuf, 0, blr->encrypted);
+ req->inbuf = (uint8_t *)(blr->inbuf);
reply_outbuf(req, 2, 0);
/*
@@ -543,6 +544,7 @@ static bool process_trans2(blocking_lock_record *blr)
}
init_smb_request(req, (uint8 *)blr->inbuf, 0, blr->encrypted);
+ req->inbuf = (uint8_t *)(blr->inbuf);
SCVAL(req->inbuf, smb_com, SMBtrans2);
SSVAL(params,0,0);