Use xstrdup() instead of plain strdup() for consistency (and implicit ENOMEM checking). Fixes: 586ad210368b7 ("libnftables: Implement JSON parser") Signed-off-by: Phil Sutter <phil@xxxxxx> --- 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 78214f6519f2b..6755d39c34f0a 100644 --- a/src/parser_json.c +++ b/src/parser_json.c @@ -2461,7 +2461,7 @@ static struct cmd *json_parse_cmd_add_rule(struct json_ctx *ctx, json_t *root, json_unpack(root, "{s:s}", "comment", &comment); if (comment) - rule->comment = strdup(comment); + rule->comment = xstrdup(comment); json_array_foreach(tmp, index, value) { struct stmt *stmt; -- 2.20.1