diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/clifile.c | 6 |
1 files changed, 4 insertions, 2 deletions
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; } |