diff options
-rw-r--r-- | src/parser_json.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/parser_json.c b/src/parser_json.c index c57c4b8a..3dc3a5c5 100644 --- a/src/parser_json.c +++ b/src/parser_json.c @@ -2429,7 +2429,11 @@ static struct cmd *json_parse_cmd_add_chain(struct json_ctx *ctx, json_t *root, static struct cmd *json_parse_cmd_add_rule(struct json_ctx *ctx, json_t *root, enum cmd_ops op, enum cmd_obj obj) { - struct handle h = { 0 }; + struct handle h = { + .table.location = *int_loc, + .chain.location = *int_loc, + .index.location = *int_loc, + }; const char *family = "", *comment = NULL; struct rule *rule; size_t index; |