1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s3: Fix an error case in cli_negprot

This commit is contained in:
Volker Lendecke 2009-12-20 23:29:32 +01:00
parent 4b7a6b1f8f
commit 1b5389ab23

View File

@ -1671,6 +1671,7 @@ static void cli_negprot_done(struct tevent_req *subreq)
status = cli_smb_recv(subreq, 1, &wct, &vwv, &num_bytes, &bytes);
if (!NT_STATUS_IS_OK(status)) {
TALLOC_FREE(subreq);
tevent_req_nterror(req, status);
return;
}