From 93ffc5a2fdaf82c4c458c2c4bbbb090b0e00e443 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Mon, 26 Jun 2023 13:59:16 +0300 Subject: [PATCH] pathd: Stop and free synchronous Zebra client on pathd termination Signed-off-by: Donatas Abraitis --- pathd/path_zebra.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pathd/path_zebra.c b/pathd/path_zebra.c index dad26383e9..826443f979 100644 --- a/pathd/path_zebra.c +++ b/pathd/path_zebra.c @@ -344,4 +344,6 @@ void path_zebra_stop(void) { zclient_stop(zclient); zclient_free(zclient); + zclient_stop(zclient_sync); + zclient_free(zclient_sync); } -- 2.39.5