Displaying 2 results from an estimated 2 matches for "564c35a".
Did you mean:
564535
2007 Sep 10
0
3 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h
...841349bff78990 (from f443e1a8281d0db546c00ec8ddb836ac9802862e)
Author: Benjamin Otte <otte at gnome.org>
Date: Sun Sep 9 21:58:48 2007 +0200
don't ERROR about missing functions, just WARN
diff --git a/libswfdec/swfdec_as_interpret.c b/libswfdec/swfdec_as_interpret.c
index 71a5663..564c35a 100644
--- a/libswfdec/swfdec_as_interpret.c
+++ b/libswfdec/swfdec_as_interpret.c
@@ -801,7 +801,7 @@ swfdec_action_call_function (SwfdecAsCon
SWFDEC_AS_VALUE_SET_UNDEFINED (fun);
}
if (!swfdec_action_call (cx, n_args)) {
- SWFDEC_ERROR ("no function named %s", name);
+...
2007 Sep 13
0
5 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame_internal.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_scope.c libswfdec/swfdec_as_scope.h libswfdec/swfdec_as_script_function.c
...sFrameBlockFunc func,
+ gpointer data,
+ GDestroyNotify destroy);
+void swfdec_as_frame_pop_block (SwfdecAsFrame * frame);
+void swfdec_as_frame_check_block (SwfdecAsFrame * frame);
G_END_DECLS
diff --git a/libswfdec/swfdec_as_interpret.c b/libswfdec/swfdec_as_interpret.c
index 564c35a..70f3c09 100644
--- a/libswfdec/swfdec_as_interpret.c
+++ b/libswfdec/swfdec_as_interpret.c
@@ -30,7 +30,6 @@
#include "swfdec_as_string.h"
#include "swfdec_as_strings.h"
#include "swfdec_as_super.h"
-#include "swfdec_as_with.h"
#include "swfdec_debu...