mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Do not assign bucket of any prefix to the root node
This commit is contained in:
parent
299f9e80f7
commit
4a1f4e837d
@ -143,9 +143,6 @@ trie_insert_prefix(const union net_addr_union *addr, struct trie_node * const ro
|
||||
const struct net_addr_ip4 * const ip4 = &addr->ip4;
|
||||
struct trie_node *node = root;
|
||||
|
||||
if (root->bucket == NULL)
|
||||
root->bucket = bucket;
|
||||
|
||||
for (u32 i = 0; i < ip4->pxlen; i++)
|
||||
{
|
||||
u32 bit = (ip4->prefix.addr >> (31 - i)) & 1;
|
||||
|
Loading…
Reference in New Issue
Block a user