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;