From: Michael Jerris Date: Tue, 13 Feb 2007 21:52:33 +0000 (+0000) Subject: potentially uninitialized variable. X-Git-Tag: v1.0-beta1~1125 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5694445ae245c5acb25a1afca93f4ab436da2f1e;p=thirdparty%2Ffreeswitch.git potentially uninitialized variable. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4243 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_sofia/mod_sofia.c b/src/mod/endpoints/mod_sofia/mod_sofia.c index 7851e91e8a..2b814654c9 100644 --- a/src/mod/endpoints/mod_sofia/mod_sofia.c +++ b/src/mod/endpoints/mod_sofia/mod_sofia.c @@ -969,7 +969,7 @@ static void do_invite(switch_core_session_t *session) 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);