* random.c (make_seed_value): Fix the length given for

rb_integer_unpack.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2013-06-08 08:15:51 +00:00
parent d35616e694
commit 483cbff8dc
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Sat Jun 8 17:15:18 2013 Tanaka Akira <akr@fsij.org>
* random.c (make_seed_value): Fix the length given for
rb_integer_unpack.
Sat Jun 8 16:38:02 2013 Tanaka Akira <akr@fsij.org>
* bignum.c (rb_integer_unpack): Don't use rb_funcall if possible.

View File

@ -517,7 +517,7 @@ make_seed_value(const uint32_t *ptr)
len = DEFAULT_SEED_CNT;
}
seed = rb_integer_unpack(+1, ptr, DEFAULT_SEED_CNT, sizeof(uint32_t), 0,
seed = rb_integer_unpack(+1, ptr, len, sizeof(uint32_t), 0,
INTEGER_PACK_LSWORD_FIRST|INTEGER_PACK_NATIVE_BYTE_ORDER);
return seed;