Beware the NULL route, my son... The bugs that bite, the BIRDs that crash :-)
This commit is contained in:
parent
acc62f5e1d
commit
8ca8683c70
1 changed files with 6 additions and 3 deletions
|
@ -203,9 +203,12 @@ rte_update(net *net, struct proto *p, rte *new)
|
|||
p->rte_remove(net, old);
|
||||
rte_free(old);
|
||||
}
|
||||
new->lastmod = now;
|
||||
if (p->rte_insert)
|
||||
p->rte_insert(net, new);
|
||||
if (new)
|
||||
{
|
||||
new->lastmod = now;
|
||||
if (p->rte_insert)
|
||||
p->rte_insert(net, new);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue