X11: Move audio driver finalize to the start of cleanup

The audio driver cleanup needs to happen at the start of finish
otherwise a race still seems to exist with the destruction of the
audioserver. I think that destroying the X resoures before has something
to do with it.
This commit is contained in:
Hein-Pieter van Braam 2017-02-17 17:59:06 +01:00
parent b96c7ace2d
commit f70afbe129

View file

@ -464,6 +464,10 @@ void OS_X11::finalize() {
memdelete(main_loop);
main_loop=NULL;
for (int i = 0; i < get_audio_driver_count(); i++) {
AudioDriverManager::get_driver(i)->finish();
}
/*
if (debugger_connection_console) {
memdelete(debugger_connection_console);
@ -475,7 +479,6 @@ void OS_X11::finalize() {
#endif
memdelete(input);
visual_server->finish();
memdelete(visual_server);
//memdelete(rasterizer);
@ -512,9 +515,6 @@ void OS_X11::finalize() {
args.clear();
for (int i = 0; i < get_audio_driver_count(); i++) {
AudioDriverManager::get_driver(i)->finish();
}
}