0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-03 07:31:54 +00:00

Merge commit '2f080b54' into thread-next-iface

This commit is contained in:
Maria Matejka 2023-04-14 13:59:23 +02:00
commit a9db956b61

View File

@ -487,7 +487,7 @@ f_instruction_name_(enum f_instruction_code fi)
static inline struct f_inst * static inline struct f_inst *
fi_new(enum f_instruction_code fi_code) fi_new(enum f_instruction_code fi_code)
{ {
struct f_inst *what = cfg_allocz(sizeof(struct f_inst)); struct f_inst *what = tmp_allocz(sizeof(struct f_inst));
what->lineno = ifs->lino; what->lineno = ifs->lino;
what->size = 1; what->size = 1;
what->fi_code = fi_code; what->fi_code = fi_code;