summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/parser.y4
-rw-r--r--src/rule.c1
2 files changed, 3 insertions, 2 deletions
diff --git a/src/parser.y b/src/parser.y
index f6c9488a..2050f8a3 100644
--- a/src/parser.y
+++ b/src/parser.y
@@ -497,7 +497,7 @@ input : /* empty */
if (++state->nerrs == max_errors)
YYABORT;
} else
- list_add_tail(&$2->list, &state->cmds);
+ list_splice_tail(&$2->list, &state->cmds);
}
}
;
@@ -560,7 +560,7 @@ line : common_block { $$ = NULL; }
if (++state->nerrs == max_errors)
YYABORT;
} else
- list_add_tail(&$1->list, &state->cmds);
+ list_splice_tail(&$1->list, &state->cmds);
}
$$ = NULL;
diff --git a/src/rule.c b/src/rule.c
index 657695a6..ab96e62e 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -426,6 +426,7 @@ struct cmd *cmd_alloc(enum cmd_ops op, enum cmd_obj obj,
struct cmd *cmd;
cmd = xzalloc(sizeof(*cmd));
+ init_list_head(&cmd->list);
cmd->op = op;
cmd->obj = obj;
cmd->handle = *h;