summaryrefslogtreecommitdiff
path: root/res/res_ari.c
diff options
context:
space:
mode:
authorhajekd <david.hajek@daktela.com>2017-10-08 21:05:56 +0200
committerSean Bright <sean.bright@gmail.com>2017-10-09 08:05:31 -0500
commita0a1f95abfe04d51a52cfb3b9db1e69a9e12c659 (patch)
tree746450a45dd8a51578da9fb70facdd6a0d4532f7 /res/res_ari.c
parent79deaa6a96f6b5d7e061b95ef15b7e20790dc615 (diff)
res/res_ari.c Fix: Memory leaks in ARI when using Content-Type: application/json
ASTERISK-27305 Reported by: David Hajek Tested by: David Hajek Change-Id: Ife3e289062e6cf7d0e7d342dbf79ed96feff441e
Diffstat (limited to 'res/res_ari.c')
-rw-r--r--res/res_ari.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_ari.c b/res/res_ari.c
index 054d3bf3c..5145499be 100644
--- a/res/res_ari.c
+++ b/res/res_ari.c
@@ -884,7 +884,7 @@ static int ast_ari_callback(struct ast_tcptls_session_instance *ser,
RAII_VAR(struct ast_variable *, post_vars, NULL, ast_variables_destroy);
struct ast_variable *var;
const char *app_name = NULL;
- RAII_VAR(struct ast_json *, body, ast_json_null(), ast_json_free);
+ RAII_VAR(struct ast_json *, body, ast_json_null(), ast_json_unref);
int debug_app = 0;
if (!response_body) {