diff options
author | kosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-11-30 20:29:37 +0000 |
---|---|---|
committer | kosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-11-30 20:29:37 +0000 |
commit | 12e059b18cfe86817e5dc16860ab90d7128f1f66 (patch) | |
tree | c5a311cc237d6711ae86f117ccacabf4912340f7 | |
parent | 7104a473ea77fa34ffbf831b64b94d0e58cb68f0 (diff) |
* random.c (init_randomseed): remove "initial" argument. It never
be used from outside of this function.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52812 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | random.c | 7 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Thu Oct 22 00:19:07 2015 KOSAKI Motohiro <[email protected]> + + * random.c (init_randomseed): remove "initial" argument. It never + be used from outside of this function. + Thu Oct 22 00:12:33 2015 KOSAKI Motohiro <[email protected]> * lib/securerandom.rb (SecureRandom::gen_random): use /dev/urandom @@ -1453,9 +1453,11 @@ static union { } sipseed; static VALUE -init_randomseed(struct MT *mt, uint32_t initial[DEFAULT_SEED_CNT]) +init_randomseed(struct MT *mt) { + uint32_t initial[DEFAULT_SEED_CNT]; VALUE seed; + fill_random_seed(initial); init_by_array(mt, initial, DEFAULT_SEED_CNT); seed = make_seed_value(initial); @@ -1467,9 +1469,8 @@ void Init_RandomSeed(void) { rb_random_t *r = &default_rand; - uint32_t initial[DEFAULT_SEED_CNT]; struct MT *mt = &r->mt; - VALUE seed = init_randomseed(mt, initial); + VALUE seed = init_randomseed(mt); int i; hashseed = genrand_int32(mt); |