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

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@78192 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Michelson
2007-08-06 17:51:09 +00:00
parent c4c0e45c8b
commit 8f17952065
+1 -1
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;