mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Check arena_idx before accessing; fix #3934
This commit is contained in:
+2
-1
@@ -229,7 +229,8 @@ mrb_exc_set(mrb_state *mrb, mrb_value exc)
|
||||
}
|
||||
else {
|
||||
mrb->exc = mrb_obj_ptr(exc);
|
||||
if ((struct RBasic*)mrb->exc == mrb->gc.arena[mrb->gc.arena_idx-1]) {
|
||||
if (mrb->gc.arena_idx > 0 &&
|
||||
(struct RBasic*)mrb->exc == mrb->gc.arena[mrb->gc.arena_idx-1]) {
|
||||
mrb->gc.arena_idx--;
|
||||
}
|
||||
if (!mrb->gc.out_of_memory) {
|
||||
|
||||
Reference in New Issue
Block a user