Archived
14
0
Fork 0

Fixing a compiler warning which warns that a variable may be used unitialized. Thanks to mvanbaak for pointing this out.

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@78192 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mmichelson 2007-08-06 17:51:09 +00:00
parent dddfa496c5
commit 59d1fbc49c

View file

@ -2938,7 +2938,7 @@ static void update_peer(struct sip_peer *p, int expiry)
static struct ast_variable *get_insecure_variable_from_config(struct ast_config *config)
{
struct ast_variable *var;
struct ast_variable *var = NULL;
struct ast_flags flags = {0};
char *cat = NULL;
const char *insecure;