FileCommands: catch all exceptions
This commit is contained in:
parent
05db6934eb
commit
58d6ddab9e
|
@ -256,7 +256,8 @@ find_stream_art(const char *directory, Mutex &mutex)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
return InputStream::OpenReady(art_file.c_str(), mutex);
|
return InputStream::OpenReady(art_file.c_str(), mutex);
|
||||||
} catch (const std::exception &e) {}
|
} catch (...) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue