1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Memory leak fix for create_rpc_bind_req()

(This used to be commit 4d26feabd7)
This commit is contained in:
Tim Potter 2003-08-04 02:51:30 +00:00
parent 5216cb0f36
commit cdf562f5b2

View File

@ -751,6 +751,7 @@ static NTSTATUS create_rpc_bind_req(struct cli_state *cli, prs_struct *rpc_out,
return NT_STATUS_NO_MEMORY;
}
}
prs_mem_free(&auth_info);
return NT_STATUS_OK;
}