mirror of
https://github.com/curl/curl.git
synced 2026-07-30 15:28:45 +03:00
Curl_inet_ntop: always check the return code
Reported-by: Siva Sivaraman Fixes #5412 Closes #5597
This commit is contained in:
parent
550bcdd442
commit
d2baa502fc
2 changed files with 13 additions and 7 deletions
|
|
@ -1043,6 +1043,7 @@ static CURLcode ftp_state_use_port(struct connectdata *conn,
|
|||
} /* data->set.ftpport */
|
||||
|
||||
if(!host) {
|
||||
const char *r;
|
||||
/* not an interface and not a host name, get default by extracting
|
||||
the IP from the control connection */
|
||||
sslen = sizeof(ss);
|
||||
|
|
@ -1055,13 +1056,15 @@ static CURLcode ftp_state_use_port(struct connectdata *conn,
|
|||
switch(sa->sa_family) {
|
||||
#ifdef ENABLE_IPV6
|
||||
case AF_INET6:
|
||||
Curl_inet_ntop(sa->sa_family, &sa6->sin6_addr, hbuf, sizeof(hbuf));
|
||||
r = Curl_inet_ntop(sa->sa_family, &sa6->sin6_addr, hbuf, sizeof(hbuf));
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
Curl_inet_ntop(sa->sa_family, &sa4->sin_addr, hbuf, sizeof(hbuf));
|
||||
r = Curl_inet_ntop(sa->sa_family, &sa4->sin_addr, hbuf, sizeof(hbuf));
|
||||
break;
|
||||
}
|
||||
if(!r)
|
||||
return CURLE_FTP_PORT_FAILED;
|
||||
host = hbuf; /* use this host name */
|
||||
possibly_non_local = FALSE; /* we know it is local now */
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue