1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Memory leak fix for create_rpc_bind_req()

This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent 98cac74c67
commit 4d26feabd7

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;
}