From d122bfc064a0265b1e08dd52bbce61caac1d6a6b Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sat, 20 Feb 2010 09:53:58 +0100 Subject: s3: Add a talloc_move for the inbuf to cli_smb_recv --- source3/libsmb/clioplock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/libsmb/clioplock.c') diff --git a/source3/libsmb/clioplock.c b/source3/libsmb/clioplock.c index 7350c4aaa3..8904ac973f 100644 --- a/source3/libsmb/clioplock.c +++ b/source3/libsmb/clioplock.c @@ -66,7 +66,7 @@ static void cli_oplock_ack_done(struct tevent_req *subreq) subreq, struct tevent_req); NTSTATUS status; - status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL); + status = cli_smb_recv(subreq, NULL, NULL, 0, NULL, NULL, NULL, NULL); TALLOC_FREE(subreq); if (!NT_STATUS_IS_OK(status)) { tevent_req_nterror(req, status); -- cgit