Displaying 3 results from an estimated 3 matches for "7d7062f".
Did you mean:
77062
2007 Aug 22
0
5 commits - libswfdec/swfdec_as_object.c NEWS player/swfplay.c
...27814cbc72a7237e64 (from 71cba217cf8baa498b14a09685aef92266e72dba)
Author: Benjamin Otte <otte at gnome.org>
Date: Wed Aug 22 11:02:36 2007 +0200
__proto__ and constructor of new objects aren't constant
diff --git a/libswfdec/swfdec_as_object.c b/libswfdec/swfdec_as_object.c
index 7d7062f..f6e07af 100644
--- a/libswfdec/swfdec_as_object.c
+++ b/libswfdec/swfdec_as_object.c
@@ -496,12 +496,10 @@ swfdec_as_object_new (SwfdecAsContext *c
object = swfdec_as_object_new_empty (context);
SWFDEC_AS_VALUE_SET_OBJECT (&val, context->Object_prototype);
swfdec_as_object_set_vari...
2007 Aug 15
3
2 commits - libswfdec/swfdec_as_object.c test/trace
libswfdec/swfdec_as_object.c | 62 +++++++++++++++-------
test/trace/Makefile.am | 9 +++
test/trace/addProperty-set-prototypes-5.swf |binary
test/trace/addProperty-set-prototypes-5.swf.trace | 4 +
test/trace/addProperty-set-prototypes-6.swf |binary
test/trace/addProperty-set-prototypes-6.swf.trace | 5 +
2007 Aug 22
0
163 commits - autogen.sh configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_source.c libswfdec/Makefile.am libswfdec/swfdec_as_array.c
...687cf30c3d7461c8222ae0d9b1e2c195ffde1c1a)
Author: Benjamin Otte <otte at gnome.org>
Date: Wed Aug 22 10:45:12 2007 +0200
only check variable flags if the variable existed, not on newly created one
diff --git a/libswfdec/swfdec_as_object.c b/libswfdec/swfdec_as_object.c
index edd8258..7d7062f 100644
--- a/libswfdec/swfdec_as_object.c
+++ b/libswfdec/swfdec_as_object.c
@@ -246,9 +246,10 @@ swfdec_as_object_do_set (SwfdecAsObject
var = swfdec_as_object_hash_create (object, variable, flags);
if (var == NULL)
return;
+ } else {
+ if (var->flags & SWFDEC_AS_VARIA...