From 675e50b9030f1205a7785273bd4745cefb713508 Mon Sep 17 00:00:00 2001 From: Richard Mudgett Date: Thu, 2 Nov 2017 11:38:23 -0500 Subject: AOC: Fix AOC-S json memory leak. Change-Id: I3a1d40a41a8a7d00fa4a187de6a343a79155d3ef --- main/aoc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main') diff --git a/main/aoc.c b/main/aoc.c index ba151d760..d63fbdf15 100644 --- a/main/aoc.c +++ b/main/aoc.c @@ -1714,7 +1714,7 @@ static struct ast_json *s_to_json(const struct ast_aoc_decoded *decoded) } for (i = 0; i < decoded->aoc_s_count; ++i) { - struct ast_json *rate = ast_json_object_create(); + struct ast_json *rate; RAII_VAR(struct ast_json *, type, NULL, ast_json_unref); RAII_VAR(struct ast_json *, currency, NULL, ast_json_unref); const char *charge_item = aoc_charged_item_str( -- cgit v1.2.3