mirror of
https://github.com/curl/curl.git
synced 2026-06-04 11:34:14 +03:00
tool_urlglob.c: Fixed compiler warnings
warning: 'variable' may be used uninitialized in this function
This commit is contained in:
parent
460fb12097
commit
84789e12fb
1 changed files with 2 additions and 2 deletions
|
|
@ -249,8 +249,8 @@ static GlobCode glob_range(URLGlob *glob, char **patternp,
|
|||
else if(ISDIGIT(*pattern)) {
|
||||
/* numeric range detected */
|
||||
unsigned long min_n;
|
||||
unsigned long max_n;
|
||||
unsigned long step_n;
|
||||
unsigned long max_n = 0;
|
||||
unsigned long step_n = 0;
|
||||
char *endp;
|
||||
|
||||
pat->type = UPTNumRange;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue