[asterisk-commits] tilghman: trunk r106607 - in /trunk: ./ main/rtp.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Mar 7 09:22:34 CST 2008


Author: tilghman
Date: Fri Mar  7 09:22:34 2008
New Revision: 106607

URL: http://svn.digium.com/view/asterisk?view=rev&rev=106607
Log:
Merged revisions 106606 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r106606 | tilghman | 2008-03-07 09:20:52 -0600 (Fri, 07 Mar 2008) | 3 lines

Properly initialize rtp->schedid
(Closes issue #12154)

........

Modified:
    trunk/   (props changed)
    trunk/main/rtp.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/main/rtp.c
URL: http://svn.digium.com/view/asterisk/trunk/main/rtp.c?view=diff&rev=106607&r1=106606&r2=106607
==============================================================================
--- trunk/main/rtp.c (original)
+++ trunk/main/rtp.c Fri Mar  7 09:22:34 2008
@@ -2191,6 +2191,7 @@
 	rtcp->s = rtp_socket("RTCP");
 	rtcp->us.sin_family = AF_INET;
 	rtcp->them.sin_family = AF_INET;
+	rtcp->schedid = -1;
 
 	if (rtcp->s < 0) {
 		ast_free(rtcp);




More information about the asterisk-commits mailing list