summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Patterson <tenderlove@ruby-lang.org>2019-08-26 13:41:54 -0700
committerAaron Patterson <tenderlove@ruby-lang.org>2019-08-26 13:42:16 -0700
commit9f0f77717368783bfded08875ade2ea46b75fab7 (patch)
tree831e670410e6a85a7eeb79cc3f5f6a5e5d9e2911
parentf13db4adde53299868b7523525e5aa2fe0a4b157 (diff)
this iv table should also use the new update function
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 4d8ced7611..d655e362dc 100644
--- a/gc.c
+++ b/gc.c
@@ -8070,7 +8070,7 @@ gc_update_object_references(rb_objspace_t *objspace, VALUE obj)
}
if (!RCLASS_EXT(obj)) break;
if (RCLASS_IV_TBL(obj)) {
- gc_update_table_refs(objspace, RCLASS_IV_TBL(obj));
+ gc_update_tbl_refs(objspace, RCLASS_IV_TBL(obj));
}
update_class_ext(objspace, RCLASS_EXT(obj));
update_m_tbl(objspace, RCLASS_CALLABLE_M_TBL(obj));