mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-09 20:58:44 +00:00
Fix some bugs in filter interpret.
This commit is contained in:
parent
ebacaf6f7b
commit
44711e0ca2
@ -655,7 +655,7 @@ interpret(struct f_inst *what)
|
||||
ONEARG;
|
||||
res = v1;
|
||||
res.type |= T_RETURN;
|
||||
break;
|
||||
return res;
|
||||
case P('c','a'): /* CALL: this is special: if T_RETURN and returning some value, mask it out */
|
||||
ONEARG;
|
||||
res = interpret(what->a2.p);
|
||||
@ -676,7 +676,10 @@ interpret(struct f_inst *what)
|
||||
}
|
||||
}
|
||||
/* It is actually possible to have t->data NULL */
|
||||
return interpret(t->data);
|
||||
|
||||
res = interpret(t->data);
|
||||
if (res.type & T_RETURN)
|
||||
return res;
|
||||
}
|
||||
break;
|
||||
case P('i','M'): /* IP.MASK(val) */
|
||||
|
Loading…
Reference in New Issue
Block a user