mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
Don't crash when filter_same() gets called on FILTER_ACCEPT or FILTER_REJECT.
This commit is contained in:
@@ -557,5 +557,10 @@ filters_postconfig(void)
|
||||
int
|
||||
filter_same(struct filter *new, struct filter *old)
|
||||
{
|
||||
if (old == new) /* Handle FILTER_ACCEPT and FILTER_REJECT */
|
||||
return 1;
|
||||
if (old == FILTER_ACCEPT || old == FILTER_REJECT ||
|
||||
new == FILTER_ACCEPT || new == FILTER_REJECT)
|
||||
return 0;
|
||||
return i_same(new->root, old->root);
|
||||
}
|
||||
|
Reference in New Issue
Block a user