From 33e6c1fab193c42d54582de2efba144a71f77b77 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Wed, 31 May 2006 13:56:50 +0000 Subject: [PATCH] fix potentially uninitiallized var. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1528 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/endpoints/mod_exosip/mod_exosip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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];