diff options
author | Donald Sharp <sharpd@nvidia.com> | 2024-03-11 21:05:56 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2024-03-11 21:05:56 +0100 |
commit | 6b2554b94a43dcd531f63d3203b31a25c682d423 (patch) | |
tree | 188cf86bbe7a55bbc0f1b189420b112928de5bd7 /zebra/main.c | |
parent | lib: Remove unused memory types (diff) | |
download | frr-6b2554b94a43dcd531f63d3203b31a25c682d423.tar.xz frr-6b2554b94a43dcd531f63d3203b31a25c682d423.zip |
zebra: Clean up leaked linklist data structure on shutdown
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/main.c')
-rw-r--r-- | zebra/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/main.c b/zebra/main.c index 606ecc727..27e98ed99 100644 --- a/zebra/main.c +++ b/zebra/main.c @@ -203,6 +203,7 @@ static void sigint(void) rib_update_finish(); list_delete(&zrouter.client_list); + list_delete(&zrouter.stale_client_list); /* Indicate that all new dplane work has been enqueued. When that * work is complete, the dataplane will enqueue an event |