mirror of
https://github.com/asterisk/asterisk.git
synced 2026-07-28 00:10:25 -07:00
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:
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user