]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Bugfix
authorIgor Putovny <igor.putovny@nic.cz>
Thu, 27 Feb 2025 16:29:18 +0000 (17:29 +0100)
committerIgor Putovny <igor.putovny@nic.cz>
Thu, 27 Feb 2025 16:29:18 +0000 (17:29 +0100)
Node can have selected bucket when entering third pass

proto/aggregator/trie.c

index ab8f9a0c7bdc6ee60d35eb73979f250ddfa9716a..0732a839696ce4c03a0c8b9cf57c3d64397d570e 100644 (file)
@@ -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);