With incremental evaluation we're first evaluating the command before
adding it to the global command list, so the command's list_head is
uninitialized during evaluation. We need to initialize it to handle the
case that an implicit set declaration will prepend a command to the list.
Also list_splice_tail() needs to be used instead of list_add_tail() to
add the entire list of commands.
Signed-off-by: Patrick McHardy <kaber@trash.net>
if (++state->nerrs == max_errors)
YYABORT;
} else
- list_add_tail(&$2->list, &state->cmds);
+ list_splice_tail(&$2->list, &state->cmds);
}
}
;
if (++state->nerrs == max_errors)
YYABORT;
} else
- list_add_tail(&$1->list, &state->cmds);
+ list_splice_tail(&$1->list, &state->cmds);
}
$$ = NULL;
struct cmd *cmd;
cmd = xzalloc(sizeof(*cmd));
+ init_list_head(&cmd->list);
cmd->op = op;
cmd->obj = obj;
cmd->handle = *h;