fix potentially uninitiallized var.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1528 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2006-05-31 13:56:50 +00:00
parent 160fe134e6
commit 33e6c1fab1
1 changed files with 1 additions and 1 deletions

View File

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