search for: c101b9c

Displaying 2 results from an estimated 2 matches for "c101b9c".

Did you mean: 61019c
2007 Oct 28
0
4 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame_internal.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader.h libswfdec/swfdec_load_object.c
...SWFDEC_LOG ("code exited block"); - swfdec_as_frame_check_block (frame); + swfdec_as_frame_pop_block (frame); pc = frame->pc; if (frame != context->frame) goto start; diff --git a/libswfdec/swfdec_as_frame.c b/libswfdec/swfdec_as_frame.c index c902406..c101b9c 100644 --- a/libswfdec/swfdec_as_frame.c +++ b/libswfdec/swfdec_as_frame.c @@ -203,16 +203,28 @@ swfdec_as_stack_iterator_next (SwfdecAsStackIterator *iter) typedef struct { const guint8 * start; /* start of block */ const guint8 * end; /* end of block (hitting this address will exit the b...
2007 Oct 29
0
20 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h
...4ea8afd4f1d5f5d2adf21d5d57c30eb1cd0 Author: Pekka Lampila <pekka.lampila at iki.fi> Date: Mon Oct 29 16:09:17 2007 +0200 Jump in Try's end block functions, not in swfdec_as_frame_handle_exception diff --git a/libswfdec/swfdec_as_frame.c b/libswfdec/swfdec_as_frame.c index 5913eb1..c101b9c 100644 --- a/libswfdec/swfdec_as_frame.c +++ b/libswfdec/swfdec_as_frame.c @@ -805,7 +805,6 @@ swfdec_as_frame_handle_exception (SwfdecAsFrame *frame) /* pop blocks in the hope that we are inside a Try block */ while (cx->exception && frame->blocks->len) { - frame->pc...