Commit 8c62edcf authored by Laurent Aimar's avatar Laurent Aimar Committed by Rémi Duraffort

Ignored language specified as 'und' (close #4077).

(cherry picked from commit f8bc940945d6b889303ad34edcdf4f471b228b51)
Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent 6e0c6291
......@@ -2712,7 +2712,7 @@ static char *LanguageGetName( const char *psz_code )
{
const iso639_lang_t *pl;
if( psz_code == NULL )
if( psz_code == NULL || !strcmp( psz_code, "und" ) )
{
return strdup( "" );
}
......
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