diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-07-04 04:09:51 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-07-04 04:09:51 +0000 |
commit | 454f028632f72495427874a8a0ff1905a318a6bf (patch) | |
tree | 661923875c489ff68f0ba15866b583cf9e9d1289 | |
parent | 9ca303b92379f128710bcc0dc91867a53d8a08ae (diff) | |
download | ruby-454f028632f72495427874a8a0ff1905a318a6bf.tar.gz |
* random.c (random_ulong_limited): avoid left shift count >= width of
type on 32bit environment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55569 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | random.c | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Mon Jul 4 13:08:48 2016 NARUSE, Yui <naruse@ruby-lang.org> + + * random.c (random_ulong_limited): avoid left shift count >= width of + type on 32bit environment. + Sun Jul 3 18:51:42 2016 Martin Duerst <duerst@it.aoyama.ac.jp> * test/ruby/enc/test_case_comprehensive.rb, test_regex_casefold.rb, @@ -992,9 +992,7 @@ random_ulong_limited(VALUE obj, rb_random_t *rnd, unsigned long limit) const int n = w > 32 ? sizeof(unsigned long) : sizeof(uint32_t); const unsigned long mask = ~(~0UL << w); const unsigned long full = -#if SIZEOF_LONG == 4 (size_t)n >= sizeof(unsigned long) ? ~0UL : -#endif ~(~0UL << n * CHAR_BIT); unsigned long val, bits = 0, rest = 0; do { |