Commit 677334f5 authored by Max Kellermann's avatar Max Kellermann

tag/TagId3: re-add missing tag_id3_load()==nullptr check

parent 3d9652ae
......@@ -351,6 +351,8 @@ tag_id3_scan(InputStream &is,
try {
tag = tag_id3_load(is);
if (!tag)
return false;
} catch (const std::runtime_error &e) {
LogError(e);
return false;
......
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