Commit f8bc9409 authored by Laurent Aimar's avatar Laurent Aimar

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

parent 3dc18b87
...@@ -2712,7 +2712,7 @@ static char *LanguageGetName( const char *psz_code ) ...@@ -2712,7 +2712,7 @@ static char *LanguageGetName( const char *psz_code )
{ {
const iso639_lang_t *pl; const iso639_lang_t *pl;
if( psz_code == NULL ) if( psz_code == NULL || !strcmp( psz_code, "und" ) )
{ {
return strdup( "" ); 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