Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a mark bug that saw some people get segfaults in multi-method dis…
…patch situations.
  • Loading branch information
jnthn committed Feb 12, 2011
1 parent 7387a66 commit c8ce669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pmc/nqpmultisig.pmc
Expand Up @@ -9,7 +9,7 @@ pmclass NQPMultiSig auto_attrs dynpmc group nqp {
VTABLE void mark() {
PMC *types, *definednesses;
GETATTR_NQPMultiSig_types(interp, SELF, types);
GETATTR_NQPMultiSig_types(interp, SELF, definednesses);
GETATTR_NQPMultiSig_definedness_constraints(interp, SELF, definednesses);
Parrot_gc_mark_PMC_alive(interp, types);
Parrot_gc_mark_PMC_alive(interp, definednesses);
}
Expand Down

0 comments on commit c8ce669

Please sign in to comment.