[platform] Fix language detection on some linux systems

This commit is contained in:
Ilya Zverev 2016-02-20 16:40:12 +03:00
parent b876eb7508
commit fe2b1a09f0

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, ":");