mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 16:18:48 -05:00
Fix compiler warning
This commit is contained in:
parent
0077a6d51b
commit
b4e6418aef
@ -189,9 +189,9 @@ int ares__get_hostent(FILE *fp, int family, struct hostent **host)
|
||||
if (!hostent->h_addr_list[0])
|
||||
break;
|
||||
if (addrfam == AF_INET)
|
||||
memcpy(hostent->h_addr_list[0], &addr, addrlen);
|
||||
memcpy(hostent->h_addr_list[0], &addr, sizeof(struct in_addr));
|
||||
else
|
||||
memcpy(hostent->h_addr_list[0], &addr6, addrlen);
|
||||
memcpy(hostent->h_addr_list[0], &addr6, sizeof(struct in6_addr));
|
||||
|
||||
/* Copy aliases. */
|
||||
hostent->h_aliases = malloc((((size_t)naliases) + 1) * sizeof(char *));
|
||||
|
Loading…
Reference in New Issue
Block a user