From: Igor Putovny Date: Thu, 27 Feb 2025 16:29:18 +0000 (+0100) Subject: Bugfix X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad774d6fc255a0db8693a84db69550d7e1e4c4fb;p=thirdparty%2Fbird.git Bugfix Node can have selected bucket when entering third pass --- diff --git a/proto/aggregator/trie.c b/proto/aggregator/trie.c index ab8f9a0c7..0732a8396 100644 --- a/proto/aggregator/trie.c +++ b/proto/aggregator/trie.c @@ -769,8 +769,6 @@ aggregator_third_pass(struct aggregator_proto *p, struct trie_node *node) */ aggregator_find_subtree_prefix(node, &prefix, &pxlen, p->addr_type); - ASSERT_DIE(node->selected_bucket == NULL); - /* Select bucket with the lowest ID */ node->selected_bucket = aggregator_select_lowest_id_bucket(p, node); ASSERT_DIE(node->selected_bucket != NULL);