Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Mark WHO.
  • Loading branch information
jnthn committed Apr 20, 2011
1 parent 9869549 commit e199d50
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pmc/stable.pmc
Expand Up @@ -39,13 +39,15 @@ pmclass STable manual_attrs dynpmc group nqp {
STable *st = (STable *)PMC_data(SELF);
INTVAL i;

/* Mark REPR, HOW and WHAT. */
/* Mark REPR, HOW, WHO and WHAT. */
if (!PMC_IS_NULL(st->REPR))
Parrot_gc_mark_PMC_alive(interp, st->REPR);
if (!PMC_IS_NULL(st->HOW))
Parrot_gc_mark_PMC_alive(interp, st->HOW);
if (!PMC_IS_NULL(st->WHAT))
Parrot_gc_mark_PMC_alive(interp, st->WHAT);
if (!PMC_IS_NULL(st->WHO))
Parrot_gc_mark_PMC_alive(interp, st->WHO);
if (!PMC_IS_NULL(st->method_cache))
Parrot_gc_mark_PMC_alive(interp, st->method_cache);

Expand Down

0 comments on commit e199d50

Please sign in to comment.