From f8bc940945d6b889303ad34edcdf4f471b228b51 Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Wed, 18 Aug 2010 22:38:14 +0200 Subject: [PATCH] Ignored language specified as 'und' (close #4077). --- src/input/es_out.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/es_out.c b/src/input/es_out.c index 239cd1985f..635b2e9893 100644 --- a/src/input/es_out.c +++ b/src/input/es_out.c @@ -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( "" ); } -- 2.39.5