mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
resolve (valid) compiler warning about variable that could be used before being initialized
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@98989 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -407,7 +407,7 @@ static struct ast_config *config_curl(const char *url, const char *unused, const
|
||||
struct ast_str *query;
|
||||
char buf1[200];
|
||||
char *stringp, *line, *pair, *key;
|
||||
int EncodeSpecialChars = 1, last_cat_metric = -1, cat_metric;
|
||||
int EncodeSpecialChars = 1, last_cat_metric = -1, cat_metric = -1;
|
||||
struct ast_category *cat=NULL;
|
||||
char *buffer, *cur_cat = "";
|
||||
char *category = "", *var_name = "", *var_val = "";
|
||||
|
Reference in New Issue
Block a user