- Timestamp:
- Apr 21, 2014 5:40:32 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r4750 r4820 852 852 } 853 853 854 if (async && call_med->tp_ready == PJ_EPENDING) { 854 if (!call_med->tp) { 855 /* Call has been disconnected, and media transports have been cleared 856 * (see ticket #1759). 857 */ 858 PJ_LOG(4,(THIS_FILE, "Media transport initialization cancelled " 859 "because call has been disconnected")); 860 status = PJ_ECANCELLED; 861 goto on_error; 862 } else if (async && call_med->tp_ready == PJ_EPENDING) { 855 863 return PJ_EPENDING; 856 864 } else if (call_med->tp_ready != PJ_SUCCESS) {
Note: See TracChangeset
for help on using the changeset viewer.