diff options
author | Max Kellermann <max@duempel.org> | 2009-12-14 22:29:46 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-14 23:16:18 +0100 |
commit | 786c1f035f99f3a396dfd52a469601163de3e9af (patch) | |
tree | 152f9a1e628d1eb8bdb0f67fa6348b88d98cfb7d /test/run_decoder.c | |
parent | f70d2f58a1ac221d488a4fbb2fda39d83048ec53 (diff) | |
download | mpd-786c1f035f99f3a396dfd52a469601163de3e9af.tar.gz mpd-786c1f035f99f3a396dfd52a469601163de3e9af.tar.xz mpd-786c1f035f99f3a396dfd52a469601163de3e9af.zip |
input_plugin: method init() returns errors with GError
Not used by any plugin currently, but this eliminates the g_error()
call in input_plugin_config(), so it's worth it.
Diffstat (limited to 'test/run_decoder.c')
-rw-r--r-- | test/run_decoder.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/run_decoder.c b/test/run_decoder.c index ec6ef9f8a..dd1ecdb67 100644 --- a/test/run_decoder.c +++ b/test/run_decoder.c @@ -138,6 +138,7 @@ decoder_tag(G_GNUC_UNUSED struct decoder *decoder, int main(int argc, char **argv) { + GError *error = NULL; bool ret; const char *decoder_name; struct decoder decoder; @@ -152,7 +153,12 @@ int main(int argc, char **argv) g_log_set_default_handler(my_log_func, NULL); - input_stream_global_init(); + if (!input_stream_global_init(&error)) { + g_warning("%s", error->message); + g_error_free(error); + return 2; + } + decoder_plugin_init_all(); decoder.plugin = decoder_plugin_from_name(decoder_name); |