aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--random.c7
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a9d9aac68b..0c74b3bfa5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Oct 22 00:19:07 2015 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * 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 <kosaki.motohiro@gmail.com>
* lib/securerandom.rb (SecureRandom::gen_random): use /dev/urandom
diff --git a/random.c b/random.c
index 7a9bd9bcf7..76775f2d80 100644
--- a/random.c
+++ b/random.c
@@ -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);