Skip to content

Commit

Permalink
Merge pull request FRRouting#16537 from FRRouting/mergify/bp/stable/1…
Browse files Browse the repository at this point in the history
…0.0/pr-16530

lib: fix crash on distribute-list delete (backport FRRouting#16530)
  • Loading branch information
donaldsharp authored Aug 8, 2024
2 parents fea4ed5 + 545d6d1 commit cd41372
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/distribute.c
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,8 @@ int group_distribute_list_create_helper(

int group_distribute_list_destroy(struct nb_cb_destroy_args *args)
{
if (args->event != NB_EV_APPLY)
return NB_OK;
nb_running_unset_entry(args->dnode);
return NB_OK;
}
Expand Down

0 comments on commit cd41372

Please sign in to comment.