mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
fix the bad bad bad mess this caused on name resolves returning more than
one name... Reported by James Bursa
This commit is contained in:
parent
25d2a27c64
commit
8629620b1c
@ -33,10 +33,8 @@ void ares_free_hostent(struct hostent *host)
|
||||
for (p = host->h_aliases; *p; p++)
|
||||
free(*p);
|
||||
free(host->h_aliases);
|
||||
for(p = host->h_addr_list; *p; p++)
|
||||
{
|
||||
free(*p);
|
||||
}
|
||||
free(host->h_addr_list[0]); /* no matter if there is one or many entries,
|
||||
there is only one malloc for all of them */
|
||||
free(host->h_addr_list);
|
||||
free(host);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user