summaryrefslogtreecommitdiff
path: root/zebra/rt_netlink.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2023-12-11 13:41:36 -0500
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2023-12-12 06:45:53 +0000
commit9103e2e9f76eb09efb396811ffa8aca3cd7b56bb (patch)
treee2a233007638136b49be9b943212edb47a978e12 /zebra/rt_netlink.c
parentde0e358b877ac9b595e7fb387a302c960a4c02d1 (diff)
zebra: The dplane_fpm_nl return path leaks memory
The route entry created when using a ctx to pass route entry data backup to the master pthread in zebra is being leaked. Prevent this from happening. Signed-off-by: Donald Sharp <sharpd@nvidia.com> (cherry picked from commit 7f9c5c7fa2d927033549a806fd9025a9459f22bc)
Diffstat (limited to 'zebra/rt_netlink.c')
-rw-r--r--zebra/rt_netlink.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c
index 5d23629143..ce839cafee 100644
--- a/zebra/rt_netlink.c
+++ b/zebra/rt_netlink.c
@@ -992,6 +992,8 @@ int netlink_route_change_read_unicast_internal(struct nlmsghdr *h,
re, ng, startup, ctx);
if (ng)
nexthop_group_delete(&ng);
+ if (ctx)
+ zebra_rib_route_entry_free(re);
} else {
/*
* I really don't see how this is possible