[svn:parrot] r41026 - branches/kill_parrot_cont/src/pmc

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Sun Sep 6 00:30:43 UTC 2009


Author: whiteknight
Date: Sun Sep  6 00:30:42 2009
New Revision: 41026
URL: https://trac.parrot.org/parrot/changeset/41026

Log:
[kill_parrot_cont] fix that segfault, Continuation was marked auto_attrs but was still trying to free it's own attrs.

Modified:
   branches/kill_parrot_cont/src/pmc/continuation.pmc

Modified: branches/kill_parrot_cont/src/pmc/continuation.pmc
==============================================================================
--- branches/kill_parrot_cont/src/pmc/continuation.pmc	Sun Sep  6 00:20:18 2009	(r41025)
+++ branches/kill_parrot_cont/src/pmc/continuation.pmc	Sun Sep  6 00:30:42 2009	(r41026)
@@ -148,9 +148,6 @@
 */
 
     VTABLE void destroy() {
-        Parrot_Continuation_attributes * const cc = PARROT_CONTINUATION(SELF);
-        if (cc)
-            mem_sys_free(cc);
     }
 /*
 


More information about the parrot-commits mailing list