FileCommands: catch all exceptions

This commit is contained in:
Max Kellermann
2019-01-21 22:19:32 +01:00
parent 05db6934eb
commit 58d6ddab9e

View File

@@ -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;
} }