potentially uninitialized vars

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3924 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2007-01-07 04:34:22 +00:00
parent e8f16d9929
commit 1dcfa50d76
2 changed files with 2 additions and 2 deletions
@@ -3828,7 +3828,7 @@ static switch_api_interface_t conf_api_interface = {
static switch_status_t chat_send(char *proto, char *from, char *to, char *subject, char *body, char *hint)
{
char name[512] = "", *p, *lbuf;
char name[512] = "", *p, *lbuf = NULL;
switch_chat_interface_t *ci;
conference_obj_t *conference = NULL;
switch_stream_handle_t stream = {0};