From 1fab94a31bd6060fe64e1ac5245a19149b97e035 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 20 Feb 2010 15:18:38 +0100 Subject: s3: Explicitly handle inbuf in cli_echo_done --- source3/libsmb/clientgen.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/libsmb/clientgen.c') diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c index 92b898146e..1b43809138 100644 --- a/source3/libsmb/clientgen.c +++ b/source3/libsmb/clientgen.c @@ -851,8 +851,9 @@ static void cli_echo_done(struct tevent_req *subreq) NTSTATUS status; uint32_t num_bytes; uint8_t *bytes; + uint8_t *inbuf; - status = cli_smb_recv(subreq, NULL, NULL, 0, NULL, NULL, + status = cli_smb_recv(subreq, state, &inbuf, 0, NULL, NULL, &num_bytes, &bytes); if (!NT_STATUS_IS_OK(status)) { tevent_req_nterror(req, status); -- cgit