Commit 43b285ef authored by Max Kellermann's avatar Max Kellermann

decoder/Thread: remove the obsolete catch(Error&)

parent f4bb18b0
......@@ -33,7 +33,6 @@
#include "DecoderList.hxx"
#include "util/MimeType.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
#include "util/RuntimeError.hxx"
#include "util/Domain.hxx"
#include "util/ScopeExit.hxx"
......@@ -466,8 +465,6 @@ decoder_task(void *arg)
std::rethrow_exception(dc.error);
} catch (const std::exception &e) {
LogError(e);
} catch (const Error &error) {
LogError(error);
} catch (...) {
}
}
......
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