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:
parent
160fe134e6
commit
33e6c1fab1
|
@ -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];
|
||||
|
||||
|
|
Loading…
Reference in New Issue