1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-11 16:58:40 +03:00

AddressSanitizer: Initialize for kcc_topology.c

Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Volker Lendecke <vl@samba.org>
This commit is contained in:
Garming Sam 2016-07-22 10:56:07 +12:00 committed by Volker Lendecke
parent 3a683b1095
commit 1f4d9355a2

View File

@ -496,7 +496,7 @@ static NTSTATUS kcctpl_create_graph(TALLOC_CTX *mem_ctx,
struct GUID_list guids,
struct kcctpl_graph **_graph)
{
struct kcctpl_graph *graph;
struct kcctpl_graph *graph = NULL;
uint32_t i;
graph = talloc_zero(mem_ctx, struct kcctpl_graph);
@ -3470,7 +3470,7 @@ static NTSTATUS kcctpl_create_intersite_connections(struct kccsrv_service *servi
struct ldb_message *cross_ref;
unsigned int cr_enabled;
int64_t cr_flags;
struct kcctpl_graph *graph;
struct kcctpl_graph *graph = NULL;
bool found_failed_dc, connected;
NTSTATUS status;