Merge pull request #1984 from Zverik/fix_lang_detect

[platform] Fix language detection on some linux systems
This commit is contained in:
Alex Zolotarev 2016-02-20 14:44:39 +01:00
commit 7b095b2cc6

View file

@ -103,7 +103,7 @@ void GetSystemPreferred(vector<string> & languages)
#elif defined(OMIM_OS_LINUX)
// check environment variables
char const * p = getenv("LANGUAGE");
if (p) // LANGUAGE can contain several values divided by ':'
if (p && strlen(p)) // LANGUAGE can contain several values divided by ':'
{
string const str(p);
strings::SimpleTokenizer iter(str, ":");