From 327f93bf1c49d725964a637e657915ccf460e8e4 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 20 Feb 2010 15:21:01 +0100 Subject: [PATCH] s3: Explicitly handle inbuf in cli_getatr_done --- source3/libsmb/clifile.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source3/libsmb/clifile.c b/source3/libsmb/clifile.c index 291f76dd91a..a034b5cebb9 100644 --- a/source3/libsmb/clifile.c +++ b/source3/libsmb/clifile.c @@ -3431,9 +3431,12 @@ static void cli_getatr_done(struct tevent_req *subreq) req, struct cli_getatr_state); uint8_t wct; uint16_t *vwv = NULL; + uint8_t *inbuf; NTSTATUS status; - status = cli_smb_recv(subreq, NULL, NULL, 4, &wct, &vwv, NULL, NULL); + status = cli_smb_recv(subreq, state, &inbuf, 4, &wct, &vwv, NULL, + NULL); + TALLOC_FREE(subreq); if (!NT_STATUS_IS_OK(status)) { tevent_req_nterror(req, status); return; @@ -3443,7 +3446,6 @@ static void cli_getatr_done(struct tevent_req *subreq) state->size = (SMB_OFF_T)IVAL(vwv+3,0); state->write_time = make_unix_date3(vwv+1, state->zone_offset); - TALLOC_FREE(subreq); tevent_req_done(req); } -- 2.34.1