summaryrefslogtreecommitdiff
path: root/res/stasis/app.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2016-10-12 16:24:14 -0500
committerRichard Mudgett <rmudgett@digium.com>2016-10-13 18:13:00 -0500
commit9c49b96374a9f631c75fc9953f825126c883ff4d (patch)
treef43da7d9cbb3a457efcfdd1e168587d97e9ad4c7 /res/stasis/app.c
parent774d5f7ef78f85a17c31c9dfbe51a96477d34940 (diff)
Audit ast_json_pack() calls for needed UTF-8 checks.
Added needed UTF-8 checks before constructing json objects in various files for strings obtained outside the system. In this case string values from a channel driver's peer and not from the user setting channel variables. * aoc.c: Fixed type mismatch in s_to_json() for time and granularity json object construction. ASTERISK-26466 Reported by: Richard Mudgett Change-Id: Iac2d867fa598daba5c5dbc619b5464625a7f2096
Diffstat (limited to 'res/stasis/app.c')
-rw-r--r--res/stasis/app.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/stasis/app.c b/res/stasis/app.c
index 6e5a396be..fb313df99 100644
--- a/res/stasis/app.c
+++ b/res/stasis/app.c
@@ -455,7 +455,7 @@ static struct ast_json *channel_dialplan(
"type", "ChannelDialplan",
"timestamp", ast_json_timeval(*tv, NULL),
"dialplan_app", new_snapshot->appl,
- "dialplan_app_data", new_snapshot->data,
+ "dialplan_app_data", AST_JSON_UTF8_VALIDATE(new_snapshot->data),
"channel", json_channel);
}