netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] parser_json: fix parsing prefix inside concat
@ 2020-02-20 17:12 Eric Garver
  2020-02-20 17:12 ` [PATCH 2/2] tests: shell: json " Eric Garver
  2020-02-21 18:16 ` [PATCH 1/2] parser_json: fix " Eric Garver
  0 siblings, 2 replies; 3+ messages in thread
From: Eric Garver @ 2020-02-20 17:12 UTC (permalink / raw)
  To: netfilter-devel; +Cc: Pablo Neira Ayuso, Phil Sutter, Stefano Brivio

Found while testing set intervals + concatenations. Thanks to Stefano
Brivio for pointing me to the fix.

Signed-off-by: Eric Garver <eric@garver.life>
---
 src/parser_json.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/parser_json.c b/src/parser_json.c
index 85082ccee7ef..77abca032902 100644
--- a/src/parser_json.c
+++ b/src/parser_json.c
@@ -1058,7 +1058,7 @@ static struct expr *json_parse_concat_expr(struct json_ctx *ctx,
 	}
 
 	json_array_foreach(root, index, value) {
-		tmp = json_parse_primary_expr(ctx, value);
+		tmp = json_parse_rhs_expr(ctx, value);
 		if (!tmp) {
 			json_error(ctx, "Parsing expr at index %zd failed.", index);
 			expr_free(expr);
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-02-21 18:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-20 17:12 [PATCH 1/2] parser_json: fix parsing prefix inside concat Eric Garver
2020-02-20 17:12 ` [PATCH 2/2] tests: shell: json " Eric Garver
2020-02-21 18:16 ` [PATCH 1/2] parser_json: fix " Eric Garver

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).