search for: swfdec_flash_security_free_pend

Displaying 2 results from an estimated 2 matches for "swfdec_flash_security_free_pend".

2007 Dec 13
0
2 commits - libswfdec/swfdec_flash_security.c libswfdec/swfdec_flash_security.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_player.c libswfdec/swfdec_resource_request.c libswfdec/swfdec_resource_request.h libswfdec/swfdec_security.h
...lasses); + g_hash_table_destroy (priv->registered_classes); - while (player->roots) - swfdec_movie_destroy (player->roots->data); - if (player->resource) { + while (priv->roots) + swfdec_movie_destroy (priv->roots->data); + if (priv->resource) { + swfdec_flash_security_free_pending ( - SWFDEC_FLASH_SECURITY (player->resource)); - g_object_unref (player->resource); - player->resource = NULL; ++ SWFDEC_FLASH_SECURITY (priv->resource)); + g_object_unref (priv->resource); + priv->resource = NULL; } - while (player->rooted_objects) -...
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
...allow_cross_domain (sec, url, callback, - user_data); - return; - } - break; - case SWFDEC_SANDBOX_LOCAL_TRUSTED: - status = 1; - break; - default: - g_assert_not_reached (); - status = 0; - break; - } - - callback (url, status, user_data); -} - -void -swfdec_flash_security_free_pending (SwfdecFlashSecurity *sec) -{ - GSList *iter; - - for (iter = sec->allow_url_pending; iter != NULL; iter = iter->next) { - SwfdecAllowURLPending *pending = iter->data; - pending->callback (pending->url, -1, pending->user_data); - swfdec_url_free (pending->url); -...