aboutsummaryrefslogtreecommitdiffstats
path: root/random.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-05 00:23:36 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-05 00:23:36 +0000
commit4a1b9786dc7fc460a438f4ac17c10ae0976ebcf1 (patch)
treebf8ac1f02baf19e5fe72ef7fad2b01fef19ff763 /random.c
parent1e2a4575748f2632a838d887db928a751e8956e4 (diff)
downloadruby-4a1b9786dc7fc460a438f4ac17c10ae0976ebcf1.tar.gz
random.c: fix filling size
* random.c (fill_random_seed): fix the size to be filled, not the size of element, but the whole size of array. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52891 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'random.c')
-rw-r--r--random.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/random.c b/random.c
index 0ce2aef284..05815c028d 100644
--- a/random.c
+++ b/random.c
@@ -567,7 +567,7 @@ fill_random_seed(uint32_t seed[DEFAULT_SEED_CNT])
memset(seed, 0, DEFAULT_SEED_LEN);
- fill_random_bytes(seed, sizeof(*seed), TRUE);
+ fill_random_bytes(seed, DEFAULT_SEED_LEN, TRUE);
gettimeofday(&tv, 0);
seed[0] ^= tv.tv_usec;