Beware the NULL route, my son... The bugs that bite, the BIRDs that crash :-)

This commit is contained in:
Martin Mares 1998-10-20 15:47:02 +00:00
parent acc62f5e1d
commit 8ca8683c70

View file

@ -203,10 +203,13 @@ rte_update(net *net, struct proto *p, rte *new)
p->rte_remove(net, old);
rte_free(old);
}
if (new)
{
new->lastmod = now;
if (p->rte_insert)
p->rte_insert(net, new);
}
}
void
rte_discard(rte *old) /* Non-filtered route deletion, used during garbage collection */