summaryrefslogtreecommitdiffhomepage
path: root/src/error.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-10-21 21:38:24 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-10-21 21:38:24 +0900
commitf6c58616a2c55331770de4c71af08caf3fae4204 (patch)
tree394187020f5919a4d7b49e4dc0df99a69c813505 /src/error.c
parentb41f1180c87086d5245661798e75748a847df695 (diff)
parent6b67590fdab696ef0aff2cb283be2bddc80a3ed4 (diff)
downloadmruby-f6c58616a2c55331770de4c71af08caf3fae4204.tar.gz
mruby-f6c58616a2c55331770de4c71af08caf3fae4204.zip
Merge pull request #2997 from furunkel/gc_cleanup
GC cleanup
Diffstat (limited to 'src/error.c')
-rw-r--r--src/error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.c b/src/error.c
index 359e5737b..66e552557 100644
--- a/src/error.c
+++ b/src/error.c
@@ -206,7 +206,7 @@ MRB_API mrb_noreturn void
mrb_exc_raise(mrb_state *mrb, mrb_value exc)
{
mrb->exc = mrb_obj_ptr(exc);
- if (!mrb->out_of_memory) {
+ if (!mrb->gc.out_of_memory) {
exc_debug_info(mrb, mrb->exc);
}
if (!mrb->jmp) {