1
0
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:
Daniel Stenberg 2004-05-03 09:17:49 +00:00
parent d42dcd60cd
commit 93dde29979

View File

@ -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;
} }