mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
numeric.c (flo_ceil_floor): negate after converting integer to float.
Otherwise integer negate may overflow.
This commit is contained in:
+1
-1
@@ -843,7 +843,7 @@ flo_ceil_floor(mrb_state *mrb, mrb_value num, double (*func)(double))
|
||||
return mrb_float_value(mrb, f);
|
||||
}
|
||||
if (ndigits < 0) {
|
||||
mrb_float d = pow(10, (double)-ndigits);
|
||||
mrb_float d = pow(10, -(double)ndigits);
|
||||
f = func(f / d) * d;
|
||||
}
|
||||
else { /* ndigits == 0 */
|
||||
|
||||
Reference in New Issue
Block a user