diff options
author | Aaron Patterson <[email protected]> | 2019-08-26 13:41:54 -0700 |
---|---|---|
committer | Aaron Patterson <[email protected]> | 2019-08-26 13:42:16 -0700 |
commit | 9f0f77717368783bfded08875ade2ea46b75fab7 (patch) | |
tree | 831e670410e6a85a7eeb79cc3f5f6a5e5d9e2911 /gc.c | |
parent | f13db4adde53299868b7523525e5aa2fe0a4b157 (diff) |
this iv table should also use the new update function
Diffstat (limited to 'gc.c')
-rw-r--r-- | gc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |