From 409fd662b062c282fc748200ccbd62e415e87f8a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 20 Feb 2010 15:19:45 +0100 Subject: s3: Explicitly handle inbuf in cli_open_done --- source3/libsmb/clifile.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source3/libsmb') diff --git a/source3/libsmb/clifile.c b/source3/libsmb/clifile.c index c5f739b6db..6e65a826e3 100644 --- a/source3/libsmb/clifile.c +++ b/source3/libsmb/clifile.c @@ -2252,11 +2252,13 @@ static void cli_open_done(struct tevent_req *subreq) req, struct cli_open_state); uint8_t wct; uint16_t *vwv; + uint8_t *inbuf; NTSTATUS status; - status = cli_smb_recv(subreq, NULL, NULL, 3, &wct, &vwv, NULL, NULL); + status = cli_smb_recv(subreq, state, &inbuf, 3, &wct, &vwv, NULL, + NULL); + TALLOC_FREE(subreq); if (!NT_STATUS_IS_OK(status)) { - TALLOC_FREE(subreq); tevent_req_nterror(req, status); return; } -- cgit