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

s4:dsdb/kcc: fix memory leak in kcctpl_copy_output_edges()

metze
This commit is contained in:
Stefan Metzmacher 2010-11-04 13:32:06 +01:00
parent 8b71438490
commit e3276b3ab3

View File

@ -1731,6 +1731,7 @@ static NTSTATUS kcctpl_copy_output_edges(struct kccsrv_service *service,
}
talloc_steal(mem_ctx, copy.data);
talloc_free(tmp_ctx);
*_copy = copy;
return NT_STATUS_OK;
}