Main, ...: catch any exception, not just std::runtime_error
This commit is contained in:
@@ -330,7 +330,7 @@ oggflac_decode(DecoderClient &client, InputStream &input_stream)
|
||||
moved it */
|
||||
try {
|
||||
input_stream.LockRewind();
|
||||
} catch (const std::runtime_error &) {
|
||||
} catch (...) {
|
||||
}
|
||||
|
||||
flac_decode_internal(client, input_stream, true);
|
||||
|
Reference in New Issue
Block a user