[svn-commits] tilghman: branch 1.4 r125276 - /branches/1.4/main/rtp.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jun 26 06:01:22 CDT 2008


Author: tilghman
Date: Thu Jun 26 06:01:21 2008
New Revision: 125276

URL: http://svn.digium.com/view/asterisk?view=rev&rev=125276
Log:
Check for rtcp structure before trying to delete schedule.
(closes issue #12872)
 Reported by: destiny6628
 Patches: 
       20080621__bug12872.diff.txt uploaded by Corydon76 (license 14)
 Tested by: destiny6628

Modified:
    branches/1.4/main/rtp.c

Modified: branches/1.4/main/rtp.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/rtp.c?view=diff&rev=125276&r1=125275&r2=125276
==============================================================================
--- branches/1.4/main/rtp.c (original)
+++ branches/1.4/main/rtp.c Thu Jun 26 06:01:21 2008
@@ -2045,7 +2045,9 @@
 
 void ast_rtp_stop(struct ast_rtp *rtp)
 {
-	AST_SCHED_DEL(rtp->sched, rtp->rtcp->schedid);
+	if (rtp->rtcp) {
+		AST_SCHED_DEL(rtp->sched, rtp->rtcp->schedid);
+	}
 
 	memset(&rtp->them.sin_addr, 0, sizeof(rtp->them.sin_addr));
 	memset(&rtp->them.sin_port, 0, sizeof(rtp->them.sin_port));




More information about the svn-commits mailing list