summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2013-08-20 11:33:43 +0000
committerJoshua Colp <jcolp@digium.com>2013-08-20 11:33:43 +0000
commit17f332169c3e731e0ceec7166933b3c1b80edf68 (patch)
tree713e79f7a334196594832389d5f800f61613c378 /res
parent430bb3bfb3841fcf48996c8cc0ef76f7f88e582e (diff)
Remove assumption in res_pjsip_dtmf_info that all INFO messages will contain a body.
(closes issue ASTERISK-22320) Reported by: Matt Jordan git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@396993 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rw-r--r--res/res_pjsip_dtmf_info.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_pjsip_dtmf_info.c b/res/res_pjsip_dtmf_info.c
index 6c69b5318..3cd410dae 100644
--- a/res/res_pjsip_dtmf_info.c
+++ b/res/res_pjsip_dtmf_info.c
@@ -39,14 +39,14 @@ static int dtmf_info_incoming_request(struct ast_sip_session *session, struct pj
pjsip_tx_data *tdata;
- char buf[body->len];
+ char buf[body ? body->len : 0];
char *cur = buf;
char *line;
char event = '\0';
unsigned int duration = 0;
- if (!ast_sip_is_content_type(&body->content_type, "application", "dtmf-relay")) {
+ if (!body || !ast_sip_is_content_type(&body->content_type, "application", "dtmf-relay")) {
return 0;
}