dect
/
asterisk
Archived
13
0
Fork 0

set variable to NULL to prevent uninitialized warning

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@108523 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
jpeeler 2008-03-13 20:38:56 +00:00
parent 9ac881393a
commit 940afa0002
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ static int app_exec(struct ast_channel *chan, void *data)
char hostname[1024];
char *port_str = NULL;
int port = 0;
struct ast_tcptls_session_instance *ser;
struct ast_tcptls_session_instance *ser = NULL;
struct ivr_localuser foo = {
.playlist = AST_LIST_HEAD_INIT_VALUE,