From: Michael Jerris Date: Wed, 31 May 2006 13:56:50 +0000 (+0000) Subject: fix potentially uninitiallized var. X-Git-Tag: v1.0-beta1~2623 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33e6c1fab193c42d54582de2efba144a71f77b77;p=thirdparty%2Ffreeswitch.git fix potentially uninitiallized var. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1528 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_exosip/mod_exosip.c b/src/mod/endpoints/mod_exosip/mod_exosip.c index 25e8ee5d05..efc0af9daf 100644 --- a/src/mod/endpoints/mod_exosip/mod_exosip.c +++ b/src/mod/endpoints/mod_exosip/mod_exosip.c @@ -1139,7 +1139,7 @@ static switch_status_t exosip_create_call(eXosip_event_t * event) int mline = 0, pos = 0; switch_channel_t *channel = NULL; char name[128]; - char *dpayload, *dname = NULL, *drate = NULL; + char *dpayload = NULL, *dname = NULL, *drate = NULL; char *remote_sdp_str = NULL; char dbuf[256];