mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 07:48:14 +00:00
Prevent crash from trying to end a session in an invalid way.
This ensures that code that was only meant to be run on a reinvite failure only runs on a reinvite failure. (closes issue ASTERISK-22061) reported by Rusty Newton git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@394473 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1609,13 +1609,14 @@ static void session_inv_on_tsx_state_changed(pjsip_inv_session *inv, pjsip_trans
|
||||
if (tsx->status_code == PJSIP_SC_REQUEST_PENDING) {
|
||||
reschedule_reinvite(session, tsx->mod_data[session_module.id], tsx->last_tx);
|
||||
return;
|
||||
} else {
|
||||
/* Other failures result in destroying the session. */
|
||||
} else if (inv->state == PJSIP_INV_STATE_CONFIRMED) {
|
||||
/* Other reinvite failures result in destroying the session. */
|
||||
pjsip_tx_data *tdata;
|
||||
pjsip_inv_end_session(inv, 500, NULL, &tdata);
|
||||
if (pjsip_inv_end_session(inv, 500, NULL, &tdata) == PJ_SUCCESS) {
|
||||
ast_sip_session_send_request(session, tdata);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (tsx->role == PJSIP_ROLE_UAS && tsx->state == PJSIP_TSX_STATE_TRYING) {
|
||||
handle_incoming_request(session, e->body.tsx_state.src.rdata);
|
||||
|
||||
Reference in New Issue
Block a user