mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
don't free(NULL)
This commit is contained in:
parent
d42dcd60cd
commit
93dde29979
@ -109,7 +109,8 @@ int ares_init_options(ares_channel *channelptr, struct ares_options *options,
|
|||||||
}
|
}
|
||||||
if (channel->nsort != -1)
|
if (channel->nsort != -1)
|
||||||
free(channel->sortlist);
|
free(channel->sortlist);
|
||||||
free(channel->lookups);
|
if(channel->lookups)
|
||||||
|
free(channel->lookups);
|
||||||
free(channel);
|
free(channel);
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user