Changeset 4165
- Timestamp:
- Jun 14, 2012 9:04:20 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_transaction.c
r4001 r4165 1738 1738 /* Check if transaction has cancelled itself from this transmit 1739 1739 * notification (https://trac.pjsip.org/repos/ticket/1033). 1740 */ 1741 if (tdata->mod_data[mod_tsx_layer.mod.id] == NULL) { 1740 * Also check if the transaction layer itself may have been shutdown 1741 * (https://trac.pjsip.org/repos/ticket/1535) 1742 */ 1743 if (mod_tsx_layer.mod.id < 0 || 1744 tdata->mod_data[mod_tsx_layer.mod.id] == NULL) 1745 { 1742 1746 *cont = PJ_FALSE; 1743 1747 return;
Note: See TracChangeset
for help on using the changeset viewer.