include ares_private.h to make sure we get the memdebug stuff included

This commit is contained in:
Daniel Stenberg 2004-02-17 07:40:31 +00:00
Родитель 59091fa860
Коммит d87981e4c1
3 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -28,7 +28,8 @@ void ares_destroy(ares_channel channel)
for (i = 0; i < channel->ndomains; i++)
free(channel->domains[i]);
free(channel->domains);
free(channel->sortlist);
if(channel->sortlist)
free(channel->sortlist);
free(channel->lookups);
while (channel->queries)
{

Просмотреть файл

@ -24,6 +24,7 @@
#include <stdlib.h>
#include "ares.h"
#include "ares_private.h" /* for the memdebug */
static int name_length(const unsigned char *encoded, const unsigned char *abuf,
int alen);

Просмотреть файл

@ -22,6 +22,7 @@
#endif
#include "ares.h"
#include "ares_private.h" /* for memdebug */
void ares_free_hostent(struct hostent *host)
{