Author: petdance
Date: Wed Jul 18 09:34:36 2007
New Revision: 19965

Modified:
   trunk/src/exceptions.c

Log:
Fixed missing breaks in a switch. :-(

Modified: trunk/src/exceptions.c
==============================================================================
--- trunk/src/exceptions.c      (original)
+++ trunk/src/exceptions.c      Wed Jul 18 09:34:36 2007
@@ -495,8 +495,10 @@
         case PARROT_CGP_CORE:
         case PARROT_CGP_JIT_CORE:
             offset = dest - (const opcode_t *)interp->code->prederef.code;
+            break;
         default:
             offset = dest - interp->code->base.data;
+            break;
     }
     return offset;
 }

Reply via email to