Skip to content
Snippets Groups Projects
Commit b0c271eb authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

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
parent 417c6dcb
No related branches found
No related tags found
No related merge requests found
......@@ -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 = "";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment