diff options
author | Max Kellermann <max@duempel.org> | 2013-09-03 11:28:47 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-03 11:28:47 +0200 |
commit | 4db119c01b1c9a10a070a2b23a3d43ca2dc722c5 (patch) | |
tree | 3f28777c86cd588df4c29569afe17d0f803fb10b /test | |
parent | bbd711556476d5ef3510678a5e525974821803b2 (diff) | |
download | mpd-4db119c01b1c9a10a070a2b23a3d43ca2dc722c5.tar.gz mpd-4db119c01b1c9a10a070a2b23a3d43ca2dc722c5.tar.xz mpd-4db119c01b1c9a10a070a2b23a3d43ca2dc722c5.zip |
IOThread: use FatalError() on g_thread_create() error
New GLib versions don't fail.
Diffstat (limited to 'test')
-rw-r--r-- | test/dump_playlist.cxx | 6 | ||||
-rw-r--r-- | test/dump_text_file.cxx | 6 | ||||
-rw-r--r-- | test/read_tags.cxx | 6 | ||||
-rw-r--r-- | test/run_decoder.cxx | 6 | ||||
-rw-r--r-- | test/run_input.cxx | 6 | ||||
-rw-r--r-- | test/run_output.cxx | 6 | ||||
-rw-r--r-- | test/visit_archive.cxx | 6 |
7 files changed, 7 insertions, 35 deletions
diff --git a/test/dump_playlist.cxx b/test/dump_playlist.cxx index f3339662c..768eee367 100644 --- a/test/dump_playlist.cxx +++ b/test/dump_playlist.cxx @@ -169,11 +169,7 @@ int main(int argc, char **argv) } io_thread_init(); - if (!io_thread_start(&error)) { - g_warning("%s", error->message); - g_error_free(error); - return EXIT_FAILURE; - } + io_thread_start(); if (!input_stream_global_init(&error)) { g_warning("%s", error->message); diff --git a/test/dump_text_file.cxx b/test/dump_text_file.cxx index 8a8f9e77f..165a6493c 100644 --- a/test/dump_text_file.cxx +++ b/test/dump_text_file.cxx @@ -116,11 +116,7 @@ int main(int argc, char **argv) config_global_init(); io_thread_init(); - if (!io_thread_start(&error)) { - g_warning("%s", error->message); - g_error_free(error); - return EXIT_FAILURE; - } + io_thread_start(); #ifdef ENABLE_ARCHIVE archive_plugin_init_all(); diff --git a/test/read_tags.cxx b/test/read_tags.cxx index 5880662de..d72721324 100644 --- a/test/read_tags.cxx +++ b/test/read_tags.cxx @@ -162,11 +162,7 @@ int main(int argc, char **argv) #endif io_thread_init(); - if (!io_thread_start(&error)) { - g_warning("%s", error->message); - g_error_free(error); - return EXIT_FAILURE; - } + io_thread_start(); if (!input_stream_global_init(&error)) { g_warning("%s", error->message); diff --git a/test/run_decoder.cxx b/test/run_decoder.cxx index 85f7c4455..c7ef92cf8 100644 --- a/test/run_decoder.cxx +++ b/test/run_decoder.cxx @@ -163,11 +163,7 @@ int main(int argc, char **argv) g_log_set_default_handler(my_log_func, NULL); io_thread_init(); - if (!io_thread_start(&error)) { - g_warning("%s", error->message); - g_error_free(error); - return EXIT_FAILURE; - } + io_thread_start(); if (!input_stream_global_init(&error)) { g_warning("%s", error->message); diff --git a/test/run_input.cxx b/test/run_input.cxx index cd7f299a6..494bcd823 100644 --- a/test/run_input.cxx +++ b/test/run_input.cxx @@ -134,11 +134,7 @@ int main(int argc, char **argv) config_global_init(); io_thread_init(); - if (!io_thread_start(&error)) { - g_warning("%s", error->message); - g_error_free(error); - return EXIT_FAILURE; - } + io_thread_start(); #ifdef ENABLE_ARCHIVE archive_plugin_init_all(); diff --git a/test/run_output.cxx b/test/run_output.cxx index 59f962a4f..6bf4ebced 100644 --- a/test/run_output.cxx +++ b/test/run_output.cxx @@ -210,11 +210,7 @@ int main(int argc, char **argv) main_loop = new EventLoop(EventLoop::Default()); io_thread_init(); - if (!io_thread_start(&error)) { - g_warning("%s", error->message); - g_error_free(error); - return EXIT_FAILURE; - } + io_thread_start(); /* initialize the audio output */ diff --git a/test/visit_archive.cxx b/test/visit_archive.cxx index d6ed0c6a1..047ef4d6d 100644 --- a/test/visit_archive.cxx +++ b/test/visit_archive.cxx @@ -77,11 +77,7 @@ main(int argc, char **argv) config_global_init(); io_thread_init(); - if (!io_thread_start(&error)) { - g_warning("%s", error->message); - g_error_free(error); - return EXIT_FAILURE; - } + io_thread_start(); archive_plugin_init_all(); |