mirror of
https://github.com/curl/curl.git
synced 2026-05-30 04:27:30 +03:00
hostip: fix 'potentially uninitialized variable' warning
Follow-up to 50d1b33.
Caught by AppVeyor.
This commit is contained in:
parent
9b4c2165f1
commit
73050fb6ae
1 changed files with 2 additions and 2 deletions
|
|
@ -823,7 +823,7 @@ CURLcode Curl_loadhostpairs(struct Curl_easy *data)
|
|||
char *entry_id;
|
||||
size_t entry_len;
|
||||
char address[64];
|
||||
char *addresses;
|
||||
char *addresses = NULL;
|
||||
char *addr_begin;
|
||||
char *addr_end;
|
||||
char *port_ptr;
|
||||
|
|
@ -842,7 +842,7 @@ CURLcode Curl_loadhostpairs(struct Curl_easy *data)
|
|||
|
||||
port_ptr = host_end + 1;
|
||||
tmp_port = strtoul(port_ptr, &end_ptr, 10);
|
||||
if(end_ptr == port_ptr || tmp_port > USHRT_MAX || *end_ptr != ':')
|
||||
if(tmp_port > USHRT_MAX || end_ptr == port_ptr || *end_ptr != ':')
|
||||
goto err;
|
||||
|
||||
port = (int)tmp_port;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue