summaryrefslogtreecommitdiffhomepage
path: root/random.c
diff options
context:
space:
mode:
Diffstat (limited to 'random.c')
-rw-r--r--random.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/random.c b/random.c
index 1a75fbf..0378e9a 100644
--- a/random.c
+++ b/random.c
@@ -217,6 +217,9 @@ void seedrandom() {
pid = getpid();
sha1_process(&hs, (void*)&pid, sizeof(pid));
+ // gettimeofday() doesn't completely fill out struct timeval on
+ // OS X (10.8.3), avoid valgrind warnings by clearing it first
+ memset(&tv, 0x0, sizeof(tv));
gettimeofday(&tv, NULL);
sha1_process(&hs, (void*)&tv, sizeof(tv));