`i_gcd()` does not work for `MRB_INT_MIN`.

parent db1172b4
......@@ -156,10 +156,10 @@ rational_new_i(mrb_state *mrb, mrb_int n, mrb_int d)
if (d == 0) {
rat_zerodiv(mrb);
}
a = i_gcd(n, d);
if ((n == MRB_INT_MIN || d == MRB_INT_MIN) && a == -1) {
if (n == MRB_INT_MIN || d == MRB_INT_MIN) {
rat_overflow(mrb);
}
a = i_gcd(n, d);
return rational_new(mrb, n/a, d/a);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment