From 9534c9aba28615d2b08fab67d9a3b14b7ce16e01 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 25 Oct 2008 15:52:43 +0200 Subject: [PATCH] properly mark the relay during GC --- swfdec/swfdec_as_object.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/swfdec/swfdec_as_object.c b/swfdec/swfdec_as_object.c index 84f7a8a4..92f7dc83 100644 --- a/swfdec/swfdec_as_object.c +++ b/swfdec/swfdec_as_object.c @@ -245,6 +245,8 @@ swfdec_as_object_mark (SwfdecGcObject *gc) g_hash_table_foreach (object->properties, swfdec_gc_object_mark_property, NULL); if (object->watches) g_hash_table_foreach (object->watches, swfdec_gc_object_mark_watch, NULL); + if (object->relay) + swfdec_gc_object_mark (object->relay); g_slist_foreach (object->interfaces, (GFunc) swfdec_gc_object_mark, NULL); } -- 2.11.4.GIT