[Freeswitch-svn] [commit] r4243 - freeswitch/trunk/src/mod/endpoints/mod_sofia

Freeswitch SVN mikej at freeswitch.org
Tue Feb 13 16:52:33 EST 2007


Author: mikej
Date: Tue Feb 13 16:52:33 2007
New Revision: 4243

Modified:
   freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c

Log:
potentially uninitialized variable.

Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/mod_sofia.c	Tue Feb 13 16:52:33 2007
@@ -969,7 +969,7 @@
 	switch_stream_handle_t stream = {0};
 	switch_hash_index_t *hi;
 	void *vval;
-	char *extra_headers;
+	char *extra_headers = NULL;
 	const void *vvar;
 
     channel = switch_core_session_get_channel(session);



More information about the Freeswitch-svn mailing list