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

This commit is contained in:
Max Kellermann 2016-02-26 14:00:30 +01:00
parent 3d9652ae35
commit 677334f5a9

View File

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