locate: ignore case when searching in song paths

The function strstrSearchTag() used g_utf8_casefold() to generate the
(pseudo-)lowercase version of the song's URL, but it never used the
variable.
This commit is contained in:
Max Kellermann 2008-12-13 01:54:11 +01:00
parent 0dab2c5bc1
commit dedaf7033b
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ strstrSearchTag(struct song *song, enum tag_type type, char *str)
song_get_url(song, path_max_tmp);
p = g_utf8_casefold(path_max_tmp, -1);
if (strstr(path_max_tmp, str))
if (strstr(p, str))
ret = 1;
g_free(p);
if (ret == 1 || type == LOCATE_TAG_FILE_TYPE)