From ca6110d92fac1cab5f29045a1108efed9174dde4 Mon Sep 17 00:00:00 2001 From: Aaron Griffith Date: Fri, 25 Jun 2010 19:20:20 +0200 Subject: playlist_list: wait for input stream to become ready Fixes an assertion failure in the input_stream_seek() call. --- src/playlist_list.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/playlist_list.c b/src/playlist_list.c index 78a1040f7..5220de63e 100644 --- a/src/playlist_list.c +++ b/src/playlist_list.c @@ -192,11 +192,22 @@ playlist_list_open_uri(const char *uri) static struct playlist_provider * playlist_list_open_stream_mime(struct input_stream *is) { + GError* error = NULL; struct playlist_provider *playlist; assert(is != NULL); assert(is->mime != NULL); + while (!is->ready) { + int ret = input_stream_buffer(is, &error); + if (ret < 0) { + input_stream_close(is); + g_warning("%s", error->message); + g_error_free(error); + return NULL; + } + } + for (unsigned i = 0; playlist_plugins[i] != NULL; ++i) { const struct playlist_plugin *plugin = playlist_plugins[i]; @@ -220,11 +231,22 @@ playlist_list_open_stream_mime(struct input_stream *is) static struct playlist_provider * playlist_list_open_stream_suffix(struct input_stream *is, const char *suffix) { + GError* error = NULL; struct playlist_provider *playlist; assert(is != NULL); assert(suffix != NULL); + while (!is->ready) { + int ret = input_stream_buffer(is, &error); + if (ret < 0) { + input_stream_close(is); + g_warning("%s", error->message); + g_error_free(error); + return NULL; + } + } + for (unsigned i = 0; playlist_plugins[i] != NULL; ++i) { const struct playlist_plugin *plugin = playlist_plugins[i]; -- cgit v1.2.3