Fixed a bug in mrb_convert_to_integer(); fix #3581

Did not update the result from `mrb_check_string_type()` before
string-to-integer conversion.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-04-11 02:00:02 +09:00
parent 03c849338f
commit db47ae5de5
+1
View File
@@ -553,6 +553,7 @@ mrb_convert_to_integer(mrb_state *mrb, mrb_value val, int base)
if (base != 0) {
tmp = mrb_check_string_type(mrb, val);
if (!mrb_nil_p(tmp)) {
val = tmp;
goto string_conv;
}
arg_error: