[svn:parrot] r41176 - trunk/src/pmc

NotFound at svn.parrot.org NotFound at svn.parrot.org
Wed Sep 9 22:29:36 UTC 2009


Author: NotFound
Date: Wed Sep  9 22:29:36 2009
New Revision: 41176
URL: https://trac.parrot.org/parrot/changeset/41176

Log:
[core] quick and dirty fix for TT #995

Modified:
   trunk/src/pmc/eval.pmc

Modified: trunk/src/pmc/eval.pmc
==============================================================================
--- trunk/src/pmc/eval.pmc	Wed Sep  9 22:26:43 2009	(r41175)
+++ trunk/src/pmc/eval.pmc	Wed Sep  9 22:29:36 2009	(r41176)
@@ -185,6 +185,12 @@
             return;
         }
 
+        /* Quick and dirty fix for TT #995 */
+        if (cur_cs == interp->initial_pf) {
+            SUPER();
+            return;
+        }
+
         /* RT#46685 create PF API, move it there */
         seg = (PackFile_Segment *)cur_cs->const_table;
         if (seg)


More information about the parrot-commits mailing list