[svn:parrot] r38650 - branches/gc_api/src/pmc

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Sat May 9 16:54:05 UTC 2009


Author: whiteknight
Date: Sat May  9 16:54:04 2009
New Revision: 38650
URL: https://trac.parrot.org/parrot/changeset/38650

Log:
[gc_api] fix for retcontinuation pmc to avoid double-free

Modified:
   branches/gc_api/src/pmc/retcontinuation.pmc

Modified: branches/gc_api/src/pmc/retcontinuation.pmc
==============================================================================
--- branches/gc_api/src/pmc/retcontinuation.pmc	Sat May  9 15:38:50 2009	(r38649)
+++ branches/gc_api/src/pmc/retcontinuation.pmc	Sat May  9 16:54:04 2009	(r38650)
@@ -100,8 +100,6 @@
 
 #ifdef NDEBUG
         /* the continuation is dead - delete and destroy it */
-        VTABLE_destroy(interp, SELF);
-        Parrot_gc_free_pmc_ext(interp, SELF);
         Parrot_gc_free_pmc_header(interp, SELF);
 #else
         cc->from_ctx = NULL;


More information about the parrot-commits mailing list