Displaying 1 result from an estimated 1 matches for "policy_files".
2008 Jan 21
0
70 commits - configure.ac libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec-gtk.h libswfdec-gtk/swfdec_gtk_loader.c libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_socket.c libswfdec-gtk/swfdec_gtk_socket.h libswfdec-gtk/swfdec_playback_alsa.c
...ex 86be3a5..008924a 100644
--- a/libswfdec/swfdec_player.c
+++ b/libswfdec/swfdec_player.c
@@ -870,6 +870,9 @@ swfdec_player_dispose (GObject *object)
g_hash_table_destroy (priv->registered_classes);
g_hash_table_destroy (priv->scripting_callbacks);
+ g_list_foreach (priv->loading_policy_files, (GFunc) g_object_unref, NULL);
+ g_list_free (priv->loading_policy_files);
+ priv->loading_policy_files = NULL;
g_slist_foreach (priv->policy_files, (GFunc) g_object_unref, NULL);
g_slist_free (priv->policy_files);
priv->policy_files = NULL;
diff --git a/libswfdec/swfdec_...