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
This commit is contained in:
Michael Jerris 2006-10-05 14:29:54 +00:00
parent f993cd6791
commit bd84b01a4b
1 changed files with 2 additions and 2 deletions

View File

@ -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++;