diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-05-30 01:28:37 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-05-30 01:28:37 +0000 |
commit | 4e4649e13cd4175aab75a0edc2fc5b082cf735d1 (patch) | |
tree | d1a87441c848bb19989cf86167658479ac32ffc0 /numeric.c | |
parent | 3b58e17d7bc1c2afe0d7b8190f1b113f3138063a (diff) |
* numeric.c (int_pow): make sure to assign the result of x * z.
If xz is optimized out, the value won't overflow.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r-- | numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2637,7 +2637,7 @@ int_pow(long x, unsigned long y) y >>= 1; } { - long xz = x * z; + volatile long xz = x * z; if (!POSFIXABLE(xz) || xz / x != z) { goto bignum; } |