Skip too big left shift in flo_shift().

This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-11-06 12:52:18 +09:00
parent 2a52ebcc56
commit 8455344bf3
+4
View File
@@ -611,6 +611,10 @@ flo_shift(mrb_state *mrb, mrb_value x, mrb_int width)
return x;
}
val = mrb_float(x);
if (width < -MRB_INT_BIT/2) {
if (val < 0) return mrb_fixnum_value(-1);
return mrb_fixnum_value(0);
}
if (width < 0) {
while (width++) {
val /= 2;