From 257a0e0688f341d58d39e969d55449543d1d0b30 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Mon, 19 Jun 2023 17:30:16 +0300 Subject: [PATCH] bgpd: Do not initialize global variable zclient_sync to NULL Signed-off-by: Donatas Abraitis --- bgpd/bgp_zebra.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_zebra.c b/bgpd/bgp_zebra.c index 111732fdd1..3e1fdc6284 100644 --- a/bgpd/bgp_zebra.c +++ b/bgpd/bgp_zebra.c @@ -55,7 +55,7 @@ /* All information about zebra. */ struct zclient *zclient = NULL; -struct zclient *zclient_sync = NULL; +struct zclient *zclient_sync; static bool bgp_zebra_label_manager_connect(void); /* hook to indicate vrf status change for SNMP */