remove unnecessary typecasting of malloc()
authorYang Tse <yangsita@gmail.com>
Sat, 6 Sep 2008 05:29:05 +0000 (05:29 +0000)
committerYang Tse <yangsita@gmail.com>
Sat, 6 Sep 2008 05:29:05 +0000 (05:29 +0000)
ares_init.c
ares_parse_ptr_reply.c

index 20a23a3..bf4771d 100644 (file)
@@ -675,7 +675,7 @@ DhcpNameServer
       {
         if (bytes)
         {
-          line = (char *)malloc(bytes+1);
+          line = malloc(bytes+1);
           if (RegQueryValueEx(mykey, NAMESERVER, NULL, &data_type,
                               (unsigned char *)line, &bytes) ==
               ERROR_SUCCESS)
@@ -952,7 +952,7 @@ static int init_by_defaults(ares_channel channel)
     size_t len = 64;
     int res;
 
-    hostname = (char *)malloc(len);
+    hostname = malloc(len);
     if(!hostname) {
       rc = ARES_ENOMEM;
       goto error;
index cce6471..8d3d40d 100644 (file)
@@ -77,7 +77,7 @@ int ares_parse_ptr_reply(const unsigned char *abuf, int alen, const void *addr,
 
   /* Examine each answer resource record (RR) in turn. */
   hostname = NULL;
-  aliases = (char **) malloc(8 * sizeof(char *));
+  aliases = malloc(8 * sizeof(char *));
   if (!aliases)
     {
       free(ptrname);