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)
free(channel->sortlist);
free(channel->lookups);
if(channel->lookups)
free(channel->lookups);
free(channel);
return status;
}