1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
nobu 2015-12-05 00:23:36 +00:00
parent 1e2a457574
commit 4a1b9786dc
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sat Dec 5 09:23:34 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* random.c (fill_random_seed): fix the size to be filled, not the
size of element, but the whole size of array.
Sat Dec 5 06:03:54 2015 Eric Wong <e@80x24.org>
* vm.c (ruby_vm_verbose_ptr): make static

View file

@ -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;