fix compiler warning: local variable may be used without having been initialized
authorYang Tse <yangsita@gmail.com>
Mon, 7 Apr 2008 14:20:05 +0000 (14:20 +0000)
committerYang Tse <yangsita@gmail.com>
Mon, 7 Apr 2008 14:20:05 +0000 (14:20 +0000)
ares/ares_gethostbyname.c

index 7c39ad1..33093aa 100644 (file)
@@ -159,7 +159,7 @@ static void host_callback(void *arg, int status, int timeouts,
 {
   struct host_query *hquery = (struct host_query *) arg;
   ares_channel channel = hquery->channel;
-  struct hostent *host;
+  struct hostent *host = NULL;
 
   hquery->timeouts += timeouts;
   if (status == ARES_SUCCESS)