diff --git a/res/res_pjsip_dtmf_info.c b/res/res_pjsip_dtmf_info.c index 6c69b5318171fbf2d05c3377a7a557528e7d2041..3cd410daee6a466f3d2ab6ef45ded590ae718360 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; }