Eino Tuominen improved the code when a file is used to seed the randomizer
diff --git a/ares/CHANGES b/ares/CHANGES
index d33eba4..a54ba41 100644
--- a/ares/CHANGES
+++ b/ares/CHANGES
@@ -1,5 +1,9 @@
   Changelog for the c-ares project
 
+* April 4 2008 (Daniel Stenberg)
+
+- Eino Tuominen improved the code when a file is used to seed the randomizer.
+
 * December 11 2007 (Gisle Vanem)
 
 - Added another sample application; acountry.c which converts an
diff --git a/ares/ares_init.c b/ares/ares_init.c
index 0110f12..583f98f 100644
--- a/ares/ares_init.c
+++ b/ares/ares_init.c
@@ -1333,13 +1333,9 @@
   }
 #else /* !WIN32 */
 #ifdef RANDOM_FILE
-  char buffer[256];
   FILE *f = fopen(RANDOM_FILE, "rb");
   if(f) {
-    size_t i;
-    size_t rc = fread(buffer, key_data_len, 1, f);
-    for(i=0; i<rc && counter < key_data_len; i++)
-      key[counter++]=buffer[i];
+    counter = fread(key, 1, key_data_len, f);
     fclose(f);
   }
 #endif