Commit 9b7cb891 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Have to scan the attrs array in addition to the element in it

parent 8b94bbc4
......@@ -422,6 +422,8 @@ extern "C" void boxGCHandler(GCVisitor* v, Box* b) {
break;
}
case HiddenClass::DICT_BACKED: {
HCAttrs::AttrList* attr_list = attrs->attr_list;
v->visit(attrs->attr_list);
v->visit(attrs->attr_list->attrs[0]);
break;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment