From 1b370138029fba0f1e1bab6edddf3f45dd65547d Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 18 Sep 2017 22:56:40 +0200 Subject: [PATCH] fix bug which makes paths with multiple destination nodes unusable --- lib/node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node.c b/lib/node.c index f02866970..4ccb44c1c 100644 --- a/lib/node.c +++ b/lib/node.c @@ -412,7 +412,7 @@ int node_parse_list(struct list *list, json_t *cfg, struct list *all) node = list_lookup(all, json_string_value(elm)); if (!node) - + goto invalid; list_push(list, node); }