Commit 0ac8f78a authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

input/meta.c: Use utf8_readdir instead of readdir.

parent df301d65
......@@ -350,7 +350,7 @@ static int __input_FindArtInCache( vlc_object_t *p_obj, input_item_t *p_item )
if( !p_dir )
return VLC_EGENERIC;
while( (p_de = readdir( p_dir )) )
while( (p_de = utf8_readdir( p_dir )) )
{
if( strncmp( p_de->d_name, "art", 3 ) )
{
......
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