mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Pop exception objects from the bottom of GC arena; fix #3863
This commit is contained in:
@@ -229,6 +229,9 @@ 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]) {
|
||||
mrb->gc.arena_idx--;
|
||||
}
|
||||
if (!mrb->gc.out_of_memory) {
|
||||
exc_debug_info(mrb, mrb->exc);
|
||||
mrb_keep_backtrace(mrb, exc);
|
||||
|
||||
Reference in New Issue
Block a user