1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r2663: fix an epmapper server leak - another talloc_realloc(NULL, ) leak

(This used to be commit 2662be3a2b)
This commit is contained in:
Andrew Tridgell 2004-09-26 12:50:36 +00:00 committed by Gerald (Jerry) Carter
parent b9a779fa83
commit 9f0638c0cf

View File

@ -117,13 +117,13 @@ static BOOL fill_protocol_tower(TALLOC_CTX *mem_ctx, struct epm_towers *twr,
build a list of all interfaces handled by all endpoint servers
*/
static uint32_t build_ep_list(TALLOC_CTX *mem_ctx,
struct dcesrv_endpoint *endpoint_list,
struct dcesrv_ep_iface **eps)
struct dcesrv_endpoint *endpoint_list,
struct dcesrv_ep_iface **eps)
{
struct dcesrv_endpoint *d;
uint32_t total = 0;
(*eps) = NULL;
(*eps) = talloc(mem_ctx, 0);
for (d=endpoint_list; d; d=d->next) {
struct dcesrv_if_list *iface;