SongFilter: add assertion to StringMatch()

This commit is contained in:
Max Kellermann 2015-06-25 23:29:07 +02:00
parent eb86fdfbea
commit f06fe76d35

View File

@ -82,6 +82,8 @@ SongFilter::Item::StringMatch(const char *s) const
assert(s != nullptr);
#endif
assert(tag != LOCATE_TAG_MODIFIED_SINCE);
if (fold_case) {
const std::string folded = IcuCaseFold(s);
return folded.find(value) != folded.npos;