search for: 227444e

Displaying 3 results from an estimated 3 matches for "227444e".

Did you mean: 22744
2007 Jul 25
0
2 commits - libswfdec/swfdec_as_context.c
...00881bc85a29522caa7bab2f661d3b (from 7cc9628502fc44902e0fbe812569c533b87a02b2) Author: Benjamin Otte <otte at gnome.org> Date: Tue Jul 24 12:05:17 2007 +0200 properly unwind frames on error (fixes #11692) diff --git a/libswfdec/swfdec_as_context.c b/libswfdec/swfdec_as_context.c index 227444e..2dab0be 100644 --- a/libswfdec/swfdec_as_context.c +++ b/libswfdec/swfdec_as_context.c @@ -809,7 +809,8 @@ start: } error: - context->frame = context->last_frame; + while (context->frame != context->last_frame) + swfdec_as_frame_return (context->frame, NULL); out: con...
2007 Jul 13
0
3 commits - doc/Makefile.am doc/swfdec-docs.sgml doc/swfdec-sections.txt libswfdec/Makefile.am libswfdec/swfdec_as_array.c libswfdec/swfdec_as_boolean.c libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c
...= FALSE; } - if (cx->frame->construct) { + if (swfdec_as_context_is_constructing (cx)) { SWFDEC_AS_BOOLEAN (object)->boolean = b; SWFDEC_AS_VALUE_SET_OBJECT (ret, object); } else { diff --git a/libswfdec/swfdec_as_context.c b/libswfdec/swfdec_as_context.c index 8a5c20d..227444e 100644 --- a/libswfdec/swfdec_as_context.c +++ b/libswfdec/swfdec_as_context.c @@ -26,7 +26,7 @@ #include "swfdec_as_context.h" #include "swfdec_as_array.h" #include "swfdec_as_boolean.h" -#include "swfdec_as_frame.h" +#include "swfdec_as_frame_intern...
2007 Jul 18
0
12 commits - configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_playback_alsa.c libswfdec/jpeg libswfdec/Makefile.am libswfdec/swfdec_amf.c libswfdec/swfdec_as_array.c libswfdec/swfdec_as_boolean.h libswfdec/swfdec_as_context.c
...sBoolean { SwfdecAsObject object; - double boolean; /* boolean represented by this boolean object */ + gboolean boolean; /* boolean represented by this boolean object */ }; struct _SwfdecAsBooleanClass { diff --git a/libswfdec/swfdec_as_context.c b/libswfdec/swfdec_as_context.c index 227444e..8546134 100644 --- a/libswfdec/swfdec_as_context.c +++ b/libswfdec/swfdec_as_context.c @@ -817,7 +817,7 @@ out: /*** EVAL ***/ -char * +static char * swfdec_as_slash_to_dot (const char *slash_str) { const char *cur = slash_str; diff --git a/libswfdec/swfdec_as_frame.h b/libswfdec/swfdec_...