Skip to content

Commit

Permalink
Merge pull request #17570 from btrent98/igmp-proxy-memfix
Browse files Browse the repository at this point in the history
pimd: free igmp proxy joins on interface deletion
  • Loading branch information
donaldsharp authored Dec 5, 2024
2 parents 34485ee + 693a37a commit a43b11f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pimd/pim_iface.c
Original file line number Diff line number Diff line change
Expand Up @@ -1464,8 +1464,7 @@ static void pim_if_gm_join_del_all(struct interface *ifp)
return;

for (ALL_LIST_ELEMENTS(pim_ifp->gm_join_list, node, nextnode, ij))
pim_if_gm_join_del(ifp, ij->group_addr, ij->source_addr,
GM_JOIN_STATIC);
pim_if_gm_join_del(ifp, ij->group_addr, ij->source_addr, ij->join_type);
}

ferr_r pim_if_static_group_add(struct interface *ifp, pim_addr group_addr,
Expand Down

0 comments on commit a43b11f

Please sign in to comment.