summaryrefslogtreecommitdiff
path: root/source3/libsmb/climessage.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-02-20 15:25:34 +0100
committerVolker Lendecke <vl@samba.org>2010-02-22 23:23:20 +0100
commit486f734fd8794fb424d44b21695973cbd01a348b (patch)
tree010f1464574642681e8c20b742d35e3bca0c186f /source3/libsmb/climessage.c
parentbe62ca140335c7f841e44195450090201e09437a (diff)
downloadsamba-486f734fd8794fb424d44b21695973cbd01a348b.tar.gz
samba-486f734fd8794fb424d44b21695973cbd01a348b.tar.bz2
samba-486f734fd8794fb424d44b21695973cbd01a348b.zip
s3: Explicitly handle inbuf in cli_message_start_done
Diffstat (limited to 'source3/libsmb/climessage.c')
-rw-r--r--source3/libsmb/climessage.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/libsmb/climessage.c b/source3/libsmb/climessage.c
index 170447b253..bdf2977af9 100644
--- a/source3/libsmb/climessage.c
+++ b/source3/libsmb/climessage.c
@@ -91,8 +91,11 @@ static void cli_message_start_done(struct tevent_req *subreq)
NTSTATUS status;
uint8_t wct;
uint16_t *vwv;
+ uint8_t *inbuf;
- status = cli_smb_recv(subreq, NULL, NULL, 0, &wct, &vwv, NULL, NULL);
+ status = cli_smb_recv(subreq, state, &inbuf, 0, &wct, &vwv,
+ NULL, NULL);
+ TALLOC_FREE(subreq);
if (!NT_STATUS_IS_OK(status)) {
TALLOC_FREE(subreq);
tevent_req_nterror(req, status);
@@ -103,7 +106,6 @@ static void cli_message_start_done(struct tevent_req *subreq)
} else {
state->grp = 0;
}
- TALLOC_FREE(subreq);
tevent_req_done(req);
}