From: Michael Jerris Date: Thu, 5 Oct 2006 14:29:54 +0000 (+0000) Subject: initialize some vars that might not get initialized in some codepaths. X-Git-Tag: v1.0-beta1~1953 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd84b01a4b05f7c9fc8da6dfed9eb2b0a739be45;p=thirdparty%2Ffreeswitch.git initialize some vars that might not get initialized in some codepaths. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2979 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 f8e65adad0..99579cbc46 100644 --- a/src/mod/endpoints/mod_sofia/mod_sofia.c +++ b/src/mod/endpoints/mod_sofia/mod_sofia.c @@ -2231,7 +2231,7 @@ static void sip_i_refer(nua_t *nua, if (session) { private_object_t *tech_pvt = NULL; - char *exten; + char *exten = NULL; tech_pvt = switch_core_session_get_private(session); from = sip->sip_from; @@ -2253,7 +2253,7 @@ static void sip_i_refer(nua_t *nua, if ((rep = strchr(refer_to->r_url->url_headers, '='))) { switch_channel_t *channel_a = NULL, *channel_b = NULL; - char *br_a, *br_b; + char *br_a = NULL, *br_b = NULL; char *buf; rep++;