diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/playlist_list.c | 22 |
1 files changed, 22 insertions, 0 deletions
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]; |