- Timestamp:
- Apr 15, 2015 12:38:54 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjnath/src/pjnath/ice_session.c
r4713 r5070 561 561 static pj_ice_sess_comp *find_comp(const pj_ice_sess *ice, unsigned comp_id) 562 562 { 563 pj_assert(comp_id > 0 && comp_id <= ice->comp_cnt); 563 /* Ticket #1844: possible wrong assertion when remote has less ICE comp */ 564 //pj_assert(comp_id > 0 && comp_id <= ice->comp_cnt); 565 if (comp_id > ice->comp_cnt) 566 return NULL; 567 564 568 return (pj_ice_sess_comp*) &ice->comp[comp_id-1]; 565 569 }
Note: See TracChangeset
for help on using the changeset viewer.