From 20a11b254bad524186923cb8332b043eb0d65499 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 30 Jun 2017 10:31:34 -0400 Subject: [PATCH] nhrpd: Fix zclient cleanup on shutdown Signed-off-by: Donald Sharp --- nhrpd/nhrp_route.c | 1 + 1 file changed, 1 insertion(+) diff --git a/nhrpd/nhrp_route.c b/nhrpd/nhrp_route.c index 7f8cad6e92..89972f8f98 100644 --- a/nhrpd/nhrp_route.c +++ b/nhrpd/nhrp_route.c @@ -379,6 +379,7 @@ void nhrp_zebra_init(void) void nhrp_zebra_terminate(void) { zclient_stop(zclient); + zclient_free(zclient); route_table_finish(zebra_rib[AFI_IP]); route_table_finish(zebra_rib[AFI_IP6]); } -- 2.39.5