[asterisk-commits] twilson: branch 1.6.1 r146972 - in	/branches/1.6.1: ./ channels/chan_sip.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Mon Oct  6 19:13:06 CDT 2008
    
    
  
Author: twilson
Date: Mon Oct  6 19:13:06 2008
New Revision: 146972
URL: http://svn.digium.com/view/asterisk?view=rev&rev=146972
Log:
Merged revisions 146970 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk
........
  r146970 | twilson | 2008-10-06 19:02:19 -0500 (Mon, 06 Oct 2008) | 2 lines
  
  A blind transfer to the parking thread would cause a segfault because copy_request accesses dst->data w/o being able to tell whether it is proerly initialized
........
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://svn.digium.com/view/asterisk/branches/1.6.1/channels/chan_sip.c?view=diff&rev=146972&r1=146971&r2=146972
==============================================================================
--- branches/1.6.1/channels/chan_sip.c (original)
+++ branches/1.6.1/channels/chan_sip.c Mon Oct  6 19:13:06 2008
@@ -16258,7 +16258,7 @@
 {
 	struct ast_channel *transferee, *transferer;	/* Chan1: The transferee, Chan2: The transferer */
 	struct sip_dual *d;
-	struct sip_request req;
+	struct sip_request req = {0,};
 	int ext;
 	int res;
 
    
    
More information about the asterisk-commits
mailing list