make sure we are using null terminated strings.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6819 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2007-12-15 20:56:56 +00:00
parent e5c81fe5f5
commit 2585c1b537
1 changed files with 1 additions and 1 deletions

View File

@ -1056,7 +1056,7 @@ static void *woomera_channel_thread_run(switch_thread_t * thread, void *obj)
switch_channel_mark_ring_ready(channel);
} else if (switch_test_flag(tech_pvt, TFLAG_PARSE_INCOMING) && !strcasecmp(wmsg.command, "INCOMING")) {
char *exten;
char cid_name[512];
char cid_name[512] = "";
char *cid_num;
char *ip;
char *p;