mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
better checks to avoid free(NULL)
This commit is contained in:
parent
ff0429a802
commit
5690a2b493
@ -140,11 +140,11 @@ int ares__get_hostent(FILE *fp, struct hostent **host)
|
||||
memcpy(hostent->h_addr_list[0], &addr, sizeof(struct in_addr));
|
||||
hostent->h_addr_list[1] = NULL;
|
||||
*host = hostent;
|
||||
if(line)
|
||||
free(line);
|
||||
free(line);
|
||||
return ARES_SUCCESS;
|
||||
}
|
||||
free(line);
|
||||
if(line)
|
||||
free(line);
|
||||
|
||||
if (status == ARES_SUCCESS)
|
||||
{
|
||||
@ -160,7 +160,7 @@ int ares__get_hostent(FILE *fp, struct hostent **host)
|
||||
}
|
||||
if(hostent->h_aliases)
|
||||
free(hostent->h_aliases);
|
||||
if (hostent->h_addr_list)
|
||||
if (hostent->h_addr_list && hostent->h_addr_list[0])
|
||||
free(hostent->h_addr_list[0]);
|
||||
if(hostent->h_addr_list)
|
||||
free(hostent->h_addr_list);
|
||||
|
Loading…
Reference in New Issue
Block a user