mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Fixes initial random values for function arguments.
Thanks to Javor Kliachev for the bugreport.
This commit is contained in:
parent
1103b32e83
commit
4ee39ff2ff
@ -336,8 +336,8 @@ type:
|
||||
|
||||
one_decl:
|
||||
type SYM {
|
||||
struct f_val * val = cfg_alloc(sizeof(struct f_val));
|
||||
val->type = $1;
|
||||
struct f_val * val = cfg_alloc(sizeof(struct f_val));
|
||||
val->type = T_VOID;
|
||||
$2 = cf_define_symbol($2, SYM_VARIABLE | $1, val);
|
||||
DBG( "New variable %s type %x\n", $2->name, $1 );
|
||||
$2->aux2 = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user