Commit 9ad201ec authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Do not set never used value

parent b3790080
......@@ -191,14 +191,14 @@ static const char *FindFallbackEncoding (const char *locale)
const char *GetFallbackEncoding( void )
{
#ifndef WIN32
const char *psz_lang = NULL;
const char *psz_lang;
/* Some systems (like Darwin, SunOS 4 or DJGPP) have only the C locale.
* Therefore we don't use setlocale here; it would return "C". */
# if defined (HAVE_SETLOCALE) && !defined ( __APPLE__)
psz_lang = setlocale (LC_ALL, NULL);
# endif
if (psz_lang == NULL)
# endif
{
psz_lang = getenv ("LC_ALL");
if ((psz_lang == NULL) || !*psz_lang)
......
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