summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJafar Al-Gharaibeh <jafar@atcorp.com>2025-04-08 14:28:50 -0500
committerGitHub <noreply@github.com>2025-04-08 14:28:50 -0500
commit297cf2232564f9bb8058b40509d4103cf0cd2838 (patch)
tree1fff800cdaa5a96eab3162b38dfa2c02ba05a60c
parent9e974a6d16f5405e44d21c52a4ad97fb6aa8343a (diff)
parent3b5c544df41035071e013f77cf76be3d07a69af4 (diff)
Merge pull request #18613 from FRRouting/mergify/bp/stable/10.2/pr-18526
pimd: Fix memory leak on shutdown (backport #18526)
-rw-r--r--pimd/pim_iface.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/pimd/pim_iface.c b/pimd/pim_iface.c
index 2642316c7d..33c03464e4 100644
--- a/pimd/pim_iface.c
+++ b/pimd/pim_iface.c
@@ -192,8 +192,17 @@ void pim_if_delete(struct interface *ifp)
assert(pim_ifp);
pim_ifp->pim->mcast_if_count--;
- if (pim_ifp->gm_join_list)
+ if (pim_ifp->gm_join_list) {
pim_if_gm_join_del_all(ifp);
+ /*
+ * Sometimes gm_join_del_all does not delete them all
+ * and as such it's not actually freed. Let's
+ * just clean this up if it wasn't to prevent
+ * the problem.
+ */
+ if (pim_ifp->gm_join_list)
+ list_delete(&pim_ifp->gm_join_list);
+ }
if (pim_ifp->static_group_list)
pim_if_static_group_del_all(ifp);
@@ -1439,10 +1448,8 @@ int pim_if_gm_join_del(struct interface *ifp, pim_addr group_addr,
}
listnode_delete(pim_ifp->gm_join_list, ij);
gm_join_free(ij);
- if (listcount(pim_ifp->gm_join_list) < 1) {
+ if (listcount(pim_ifp->gm_join_list) < 1)
list_delete(&pim_ifp->gm_join_list);
- pim_ifp->gm_join_list = 0;
- }
return 0;
}