[asterisk-commits] mnicholson: branch 1.6.1 r233395 - in /branches/1.6.1: ./ channels/chan_sip.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Dec 7 10:16:17 CST 2009


Author: mnicholson
Date: Mon Dec  7 10:16:15 2009
New Revision: 233395

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=233395
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.1/   (props changed)
    branches/1.6.1/channels/chan_sip.c

Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.1/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/channels/chan_sip.c?view=diff&rev=233395&r1=233394&r2=233395
==============================================================================
--- branches/1.6.1/channels/chan_sip.c (original)
+++ branches/1.6.1/channels/chan_sip.c Mon Dec  7 10:16:15 2009
@@ -7751,7 +7751,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