From 411d7deaf5fca14b8fcac9ff70a44e9eb37faadf Mon Sep 17 00:00:00 2001 From: jsorg71 Date: Thu, 7 Jun 2007 22:17:26 +0000 Subject: [PATCH] improve win32 random --- common/os_calls.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/common/os_calls.c b/common/os_calls.c index 9bb5ef1f..a66722c4 100644 --- a/common/os_calls.c +++ b/common/os_calls.c @@ -558,7 +558,14 @@ void APP_CC g_random(char* data, int len) { #if defined(_WIN32) - memset(data, 0x44, len); + int index; + + srand(g_time1()); + for (index = 0; index < len; index++) + { + data[index] = (char)rand(); /* rand returns a number between 0 and + RAND_MAX */ + } #else int fd;