Skip to content
Snippets Groups Projects
Commit f72f9cee authored by Scott Griepentrog's avatar Scott Griepentrog Committed by Scott Griepentrog
Browse files

pjsip: avoid possible crash req_caps allocation failure

Make certain that the pjsip session has not failed to
allocate the format capabilities structure, which can
otherwise cause a crash when referenced.

ASTERISK-25323

Change-Id: I602790ba12714741165e441cc64a3ecde4cb5750
parent 34ad877b
Branches
Tags
No related merge requests found
...@@ -1297,6 +1297,11 @@ struct ast_sip_session *ast_sip_session_alloc(struct ast_sip_endpoint *endpoint, ...@@ -1297,6 +1297,11 @@ struct ast_sip_session *ast_sip_session_alloc(struct ast_sip_endpoint *endpoint,
session->contact = ao2_bump(contact); session->contact = ao2_bump(contact);
session->inv_session = inv_session; session->inv_session = inv_session;
session->req_caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT); session->req_caps = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
if (!session->req_caps) {
/* Release the ref held by session->inv_session */
ao2_ref(session, -1);
return NULL;
}
if ((endpoint->dtmf == AST_SIP_DTMF_INBAND) || (endpoint->dtmf == AST_SIP_DTMF_AUTO)) { if ((endpoint->dtmf == AST_SIP_DTMF_INBAND) || (endpoint->dtmf == AST_SIP_DTMF_AUTO)) {
dsp_features |= DSP_FEATURE_DIGIT_DETECT; dsp_features |= DSP_FEATURE_DIGIT_DETECT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment