From: Joshua Colp Date: Thu, 19 Jan 2012 21:11:12 +0000 (+0000) Subject: Prevent crash when an SDP offer is received with an encrypted video stream when suppo... X-Git-Tag: 1.8.10.0-rc1~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb10c11063f3533b6b68bbd2479daa7563375b37;p=thirdparty%2Fasterisk.git Prevent crash when an SDP offer is received with an encrypted video stream when support for video is disabled and res_srtp is loaded. (closes issue ASTERISK-19202) Reported by: Catalin Sanda git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@351504 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 06886e6d20..9f5e94a5a6 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -29394,6 +29394,12 @@ static int setup_srtp(struct sip_srtp **srtp) static int process_crypto(struct sip_pvt *p, struct ast_rtp_instance *rtp, struct sip_srtp **srtp, const char *a) { + /* If no RTP instance exists for this media stream don't bother processing the crypto line */ + if (!rtp) { + ast_debug(3, "Received offer with crypto line for media stream that is not enabled\n"); + return FALSE; + } + if (strncasecmp(a, "crypto:", 7)) { return FALSE; }