]> granicus.if.org Git - curl/commitdiff
removed usage of unset variables (by a function that does nothing!)
authorDaniel Stenberg <daniel@haxx.se>
Fri, 13 Feb 2004 12:28:27 +0000 (12:28 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 13 Feb 2004 12:28:27 +0000 (12:28 +0000)
ares/adig.c
ares/ahost.c

index 85cea0a11f18ab7847451fc6e1f4cec30497e52f..0513d2fd77ccb6a2fe5a4e6aa513fb01bf21c906 100644 (file)
@@ -140,7 +140,6 @@ int main(int argc, char **argv)
   struct hostent *hostent;
   fd_set read_fds, write_fds;
   struct timeval *tvp, tv;
-  char *errmem;
 
 #ifdef WIN32
   WORD wVersionRequested = MAKEWORD(1,1);
@@ -240,7 +239,6 @@ int main(int argc, char **argv)
     {
       fprintf(stderr, "ares_init_options: %s\n",
              ares_strerror(status));
-      ares_free_errmem(errmem);
       return 1;
     }
 
@@ -281,7 +279,7 @@ int main(int argc, char **argv)
 
 static void callback(void *arg, int status, unsigned char *abuf, int alen)
 {
-  char *name = (char *) arg, *errmem;
+  char *name = (char *) arg;
   int id, qr, opcode, aa, tc, rd, ra, rcode;
   unsigned int qdcount, ancount, nscount, arcount, i;
   const unsigned char *aptr;
@@ -296,7 +294,6 @@ static void callback(void *arg, int status, unsigned char *abuf, int alen)
   if (status != ARES_SUCCESS)
     {
       printf("%s\n", ares_strerror(status));
-      ares_free_errmem(errmem);
       if (!abuf)
        return;
     }
index 6aa6e3f59b8f4c2febebc75ab1417b0405cdbe91..f643c755b83fe7dc10f33b8d4c5a0b9658e431d0 100644 (file)
@@ -44,7 +44,6 @@ int main(int argc, char **argv)
   int status, nfds;
   fd_set read_fds, write_fds;
   struct timeval *tvp, tv;
-  char *errmem;
   struct in_addr addr;
 
 #ifdef WIN32
@@ -60,7 +59,6 @@ int main(int argc, char **argv)
   if (status != ARES_SUCCESS)
     {
       fprintf(stderr, "ares_init: %s\n", ares_strerror(status));
-      ares_free_errmem(errmem);
       return 1;
     }
 
@@ -97,12 +95,11 @@ int main(int argc, char **argv)
 static void callback(void *arg, int status, struct hostent *host)
 {
   struct in_addr addr;
-  char *mem, **p;
+  char **p;
 
   if (status != ARES_SUCCESS)
     {
       fprintf(stderr, "%s: %s\n", (char *) arg, ares_strerror(status));
-      ares_free_errmem(mem);
       return;
     }