Commit 58d6ddab authored by Max Kellermann's avatar Max Kellermann

FileCommands: catch all exceptions

parent 05db6934
...@@ -256,7 +256,8 @@ find_stream_art(const char *directory, Mutex &mutex) ...@@ -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;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment