mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-19 05:10:40 +00:00
parent
51265f3f7d
commit
5bd7518343
@ -305,7 +305,11 @@ lwip_getaddrinfo(const char *nodename, const char *servname,
|
|||||||
/* service name specified: convert to port number
|
/* service name specified: convert to port number
|
||||||
* @todo?: currently, only ASCII integers (port numbers) are supported (AI_NUMERICSERV)! */
|
* @todo?: currently, only ASCII integers (port numbers) are supported (AI_NUMERICSERV)! */
|
||||||
port_nr = atoi(servname);
|
port_nr = atoi(servname);
|
||||||
if ((port_nr <= 0) || (port_nr > 0xffff)) {
|
if (port_nr == 0 && (servname[0] != '0')) {
|
||||||
|
/* atoi failed - service was not numeric */
|
||||||
|
return EAI_SERVICE;
|
||||||
|
}
|
||||||
|
if ((port_nr < 0) || (port_nr > 0xffff)) {
|
||||||
return EAI_SERVICE;
|
return EAI_SERVICE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user