Commit cc3be3ae authored by Max Kellermann's avatar Max Kellermann

TagFile: use IgnoreError()

parent 72af3c04
...@@ -61,11 +61,9 @@ tag_file_scan(const char *path_fs, ...@@ -61,11 +61,9 @@ tag_file_scan(const char *path_fs,
if (plugin->scan_stream != nullptr) { if (plugin->scan_stream != nullptr) {
/* open the input_stream (if not already /* open the input_stream (if not already
open) */ open) */
if (is == nullptr) { if (is == nullptr)
Error error;
is = input_stream::Open(path_fs, mutex, cond, is = input_stream::Open(path_fs, mutex, cond,
error); IgnoreError());
}
/* now try the stream_tag() method */ /* now try the stream_tag() method */
if (is != nullptr) { if (is != 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