mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-01-03 15:41:54 +00:00
Fix aggregator_bucket_unionize()
The last two while loops were incorrectly placed inside the first while loop
This commit is contained in:
parent
9954b24f57
commit
26ac6dca5c
@ -323,6 +323,7 @@ aggregator_bucket_unionize(struct trie_node *node, const struct trie_node *left,
|
||||
default:
|
||||
bug("Impossible");
|
||||
}
|
||||
}
|
||||
|
||||
while (i < left->potential_buckets_count)
|
||||
{
|
||||
@ -345,7 +346,6 @@ aggregator_bucket_unionize(struct trie_node *node, const struct trie_node *left,
|
||||
|
||||
j++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user