[Swfdec-commits] Branch '0.6' - swfdec/swfdec_as_context.c

Pekka Lampila medar at kemper.freedesktop.org
Tue Jul 29 02:27:41 PDT 2008


 swfdec/swfdec_as_context.c |    2 --
 1 file changed, 2 deletions(-)

New commits:
commit a81f45d955b3125b016b9823c22f2576cdd25766
Author: Pekka Lampila <pekka.lampila at iki.fi>
Date:   Tue Jul 29 12:22:16 2008 +0300

    Fix a bug that caused execution to stop when exception was fired on block exit
    
    This break statement was copied from unstable branch without realizing that the
    block in question is if in 0.6 and while in 0.7. Fixes try.as test

diff --git a/swfdec/swfdec_as_context.c b/swfdec/swfdec_as_context.c
index 7d0f7f2..7d85546 100644
--- a/swfdec/swfdec_as_context.c
+++ b/swfdec/swfdec_as_context.c
@@ -914,8 +914,6 @@ start:
       pc = frame->pc;
       if (frame != context->frame)
 	goto start;
-      if (context->exception)
-	break;
     }
     if (context->exception)
       continue;


More information about the Swfdec-commits mailing list