Changeset 4384 for pjproject/branches/1.x
- Timestamp:
- Feb 27, 2013 10:08:07 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: 4203
- Property svn:mergeinfo changed
-
pjproject/branches/1.x/pjmedia/src/pjmedia/transport_ice.c
r3906 r4384 269 269 } 270 270 271 pj_ice_strans_stop_ice(tp_ice->ice_st); 271 if (tp_ice->ice_st) { 272 pj_ice_strans_stop_ice(tp_ice->ice_st); 273 } 272 274 273 275 tp_ice->use_ice = PJ_FALSE; -
pjproject/branches/1.x/pjnath/src/pjnath/ice_strans.c
r3991 r4384 1128 1128 PJ_DEF(pj_status_t) pj_ice_strans_stop_ice(pj_ice_strans *ice_st) 1129 1129 { 1130 PJ_ASSERT_RETURN(ice_st, PJ_EINVAL); 1131 1130 1132 if (ice_st->ice) { 1131 1133 pj_ice_sess_destroy(ice_st->ice);
Note: See TracChangeset
for help on using the changeset viewer.