From: Anthony Minessale Date: Sat, 17 Jan 2015 00:22:27 +0000 (-0600) Subject: fix seg in ice rtp code X-Git-Tag: v1.4.16~1^2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=46cf8a4dce0599ce428dd129b99603ced0b682f4;p=thirdparty%2Ffreeswitch.git fix seg in ice rtp code --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index 264e9b7ad6..e4850bd135 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -1014,6 +1014,9 @@ static void handle_ice(switch_rtp_t *rtp_session, switch_rtp_ice_t *ice, void *d //ice->ice_params->cands[ice->ice_params->chosen][ice->proto].priority; for (j = 0; j < 2; j++) { + if (!icep[j] || !icep[j]->ice_params) { + continue; + } for (i = 0; i < icep[j]->ice_params->cand_idx; i++) { if (icep[j]->ice_params && icep[j]->ice_params->cands[i][icep[j]->proto].priority == *pri) { if (j == IPR_RTP) {