output/Thread: add missing return in exception handler

This commit is contained in:
Max Kellermann 2019-08-21 10:20:17 +02:00
parent 6c9f9c136b
commit b968e1b6de

View File

@ -159,6 +159,7 @@ AudioOutputControl::InternalOpen(const AudioFormat in_audio_format,
} catch (...) {
LogError(std::current_exception());
Failure(std::current_exception());
return;
}
if (f != in_audio_format || f != output->out_audio_format)