summaryrefslogtreecommitdiffstats
path: root/common/os_calls.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/os_calls.c')
-rw-r--r--common/os_calls.c9
1 files changed, 8 insertions, 1 deletions
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;