Since verdict expression frees the chain name, pass a newly allocated string to it. Otherwise double free happens because json_decref() frees the string property value as well. Fixes: d1057a5feb5fd ("JSON: Simplify verdict statement parsing") Signed-off-by: Phil Sutter <phil@xxxxxx> --- src/parser_json.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/parser_json.c b/src/parser_json.c index d00cf422c314e..78214f6519f2b 100644 --- a/src/parser_json.c +++ b/src/parser_json.c @@ -1075,7 +1075,8 @@ static struct expr *json_parse_verdict_expr(struct json_ctx *ctx, return NULL; return verdict_expr_alloc(int_loc, - verdict_tbl[i].verdict, chain); + verdict_tbl[i].verdict, + chain ? xstrdup(chain) : NULL); } json_error(ctx, "Unknown verdict '%s'.", type); return NULL; -- 2.20.1