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

NotFound at svn.parrot.org NotFound at svn.parrot.org
Tue Aug 31 07:39:09 UTC 2010


Author: NotFound
Date: Tue Aug 31 07:39:09 2010
New Revision: 48732
URL: https://trac.parrot.org/parrot/changeset/48732

Log:
missing break that gave wrong result from getattribute exit_code

Modified:
   trunk/src/pmc/exception.pmc

Modified: trunk/src/pmc/exception.pmc
==============================================================================
--- trunk/src/pmc/exception.pmc	Tue Aug 31 04:23:57 2010	(r48731)
+++ trunk/src/pmc/exception.pmc	Tue Aug 31 07:39:09 2010	(r48732)
@@ -590,6 +590,7 @@
             GET_ATTR_exit_code(INTERP, SELF, exit_code);
             value = Parrot_pmc_new_init_int(INTERP, enum_class_Integer, exit_code);
             }
+            break;
           case attr_handled:
             {
             INTVAL handled;


More information about the parrot-commits mailing list