mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
array.c: check size bound by ARY_MAX_SIZE not MRB_INT_MAX.
This commit is contained in:
+1
-1
@@ -716,7 +716,7 @@ mrb_ary_set(mrb_state *mrb, mrb_value ary, mrb_int n, mrb_value val)
|
||||
mrb_raisef(mrb, E_INDEX_ERROR, "index %i out of array", n - len);
|
||||
}
|
||||
}
|
||||
if (n == MRB_INT_MAX) {
|
||||
if (n >= ARY_MAX_SIZE) {
|
||||
mrb_raise(mrb, E_INDEX_ERROR, "index too big");
|
||||
}
|
||||
if (len <= n) {
|
||||
|
||||
Reference in New Issue
Block a user