[asterisk-commits] mnicholson: branch 1.6.0 r233397 - in /branches/1.6.0: ./ channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Dec 7 10:16:35 CST 2009
Author: mnicholson
Date: Mon Dec 7 10:16:32 2009
New Revision: 233397
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=233397
Log:
Merged revisions 233394 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r233394 | mnicholson | 2009-12-07 10:14:42 -0600 (Mon, 07 Dec 2009) | 8 lines
Do not reject SDP packets describing only non audio streams.
(closes issue #16387)
Reported by: zalex1953
Patches:
media-level-c-fix1.diff uploaded by mnicholson (license 96)
Tested by: mnicholson, zalex1953
........
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/channels/chan_sip.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.0/channels/chan_sip.c?view=diff&rev=233397&r1=233396&r2=233397
==============================================================================
--- branches/1.6.0/channels/chan_sip.c (original)
+++ branches/1.6.0/channels/chan_sip.c Mon Dec 7 10:16:32 2009
@@ -7227,7 +7227,7 @@
/* Sanity checks */
- if (!hp) {
+ if (!hp && !vhp && !thp && !ihp) {
ast_log(LOG_WARNING, "Insufficient information in SDP (c=)...\n");
return -1;
}
More information about the asterisk-commits
mailing list