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:
Kevin P. Fleming 2008-01-17 15:04:54 +00:00
parent 417c6dcb1d
commit b0c271eb31
1 changed files with 1 additions and 1 deletions

View File

@ -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 = "";