search for: 22f418b

Displaying 2 results from an estimated 2 matches for "22f418b".

Did you mean: 22.418
2007 Mar 14
0
10 commits - libswfdec/swfdec_flv_decoder.c libswfdec/swfdec_flv_decoder.h libswfdec/swfdec_js_global.c libswfdec/swfdec_js_movie.c libswfdec/swfdec_js_net_stream.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader.h libswfdec/swfdec_loadertarget.c
...00 2007 +0100 change the way swfdec_loader_load works. swfdec_loader_load now always returns a loader. If there was an error creating the loader, the loader will have been put in the error state on creation. diff --git a/libswfdec/swfdec_loader.c b/libswfdec/swfdec_loader.c index 22f418b..4334562 100644 --- a/libswfdec/swfdec_loader.c +++ b/libswfdec/swfdec_loader.c @@ -191,17 +191,16 @@ swfdec_file_loader_load (SwfdecLoader *l /* FIXME: need to rework seperators on windows? */ real_path = g_build_filename (SWFDEC_FILE_LOADER (loader)->dir, url, NULL); buffer = swfdec_b...
2007 Mar 12
0
11 commits - libswfdec/js libswfdec/swfdec_loader.c libswfdec/swfdec_root_sprite.c libswfdec/swfdec_script.c player/swfdebug.c player/swfdec_player_manager.c test/trace
...0ac20995412909d916fc) Author: Benjamin Otte <otte@gnome.org> Date: Mon Mar 12 22:28:31 2007 +0100 for absolute URIs, print a warning and then load them relative This is strictly a Youtube fix :) diff --git a/libswfdec/swfdec_loader.c b/libswfdec/swfdec_loader.c index 8c85d81..22f418b 100644 --- a/libswfdec/swfdec_loader.c +++ b/libswfdec/swfdec_loader.c @@ -183,8 +183,9 @@ swfdec_file_loader_load (SwfdecLoader *l GError *error = NULL; if (g_path_is_absolute (url)) { - SWFDEC_ERROR ("absolute paths are not allowed"); - return NULL; + SWFDEC_ERROR (&quo...