[asterisk-commits] tilghman: branch 1.4 r106606 - /branches/1.4/main/rtp.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Fri Mar 7 09:20:53 CST 2008
Author: tilghman
Date: Fri Mar 7 09:20:52 2008
New Revision: 106606
URL: http://svn.digium.com/view/asterisk?view=rev&rev=106606
Log:
Properly initialize rtp->schedid
(Closes issue #12154)
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=106606&r1=106605&r2=106606
==============================================================================
--- branches/1.4/main/rtp.c (original)
+++ branches/1.4/main/rtp.c Fri Mar 7 09:20:52 2008
@@ -1864,6 +1864,7 @@
rtcp->s = rtp_socket();
rtcp->us.sin_family = AF_INET;
rtcp->them.sin_family = AF_INET;
+ rtcp->schedid = -1;
if (rtcp->s < 0) {
free(rtcp);
More information about the asterisk-commits
mailing list