diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-12-11 13:41:36 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-12-11 13:44:06 -0500 |
| commit | 7f9c5c7fa2d927033549a806fd9025a9459f22bc (patch) | |
| tree | f523ae1f1b9504069fcec63f385f3ba6ad96a2ab /zebra/zebra_rib.c | |
| parent | d41c757763b57f46d52275af5b076b47d076e8d7 (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>
Diffstat (limited to 'zebra/zebra_rib.c')
| -rw-r--r-- | zebra/zebra_rib.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 980fced8a7..c03d7e51f8 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -4305,6 +4305,12 @@ struct route_entry *zebra_rib_route_entry_new(vrf_id_t vrf_id, int type, return re; } + +void zebra_rib_route_entry_free(struct route_entry *re) +{ + XFREE(MTYPE_RE, re); +} + /* * Internal route-add implementation; there are a couple of different public * signatures. Callers in this path are responsible for the memory they |
