Changeset 4379
- Timestamp:
- Feb 27, 2013 9:54:51 AM (12 years ago)
- Location:
- pjproject/branches/1.x
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x
- Property svn:mergeinfo changed
/pjproject/trunk merged: 4165,4169
- Property svn:mergeinfo changed
-
pjproject/branches/1.x/pjsip/src/pjsip/sip_transaction.c
r3989 r4379 1715 1715 /* Check if transaction has cancelled itself from this transmit 1716 1716 * notification (https://trac.pjsip.org/repos/ticket/1033). 1717 */ 1718 if (tdata->mod_data[mod_tsx_layer.mod.id] == NULL) { 1717 * Also check if the transaction layer itself may have been shutdown 1718 * (https://trac.pjsip.org/repos/ticket/1535) 1719 */ 1720 if (mod_tsx_layer.mod.id < 0 || 1721 tdata->mod_data[mod_tsx_layer.mod.id] == NULL) 1722 { 1719 1723 *cont = PJ_FALSE; 1720 1724 return; -
pjproject/branches/1.x/pjsip/src/pjsip/sip_util_statefull.c
r3553 r4379 60 60 struct tsx_data *tsx_data; 61 61 62 if (event->type != PJSIP_EVENT_TSX_STATE) 62 /* Check if the module has been unregistered (see ticket #1535) and also 63 * verify the event type. 64 */ 65 if (mod_stateful_util.id < 0 || event->type != PJSIP_EVENT_TSX_STATE) 63 66 return; 64 67
Note: See TracChangeset
for help on using the changeset viewer.