Don't crash if language detection fails, but leave a warning. This should be fixed properly at some point (in particular, it is reported to fail for systems using Czech)
This commit is contained in:
@@ -343,7 +343,11 @@ RString ArchHooks::GetPreferredLanguage()
|
|||||||
{
|
{
|
||||||
// MacRoman agrees with ASCII in the low-order 7 bits.
|
// MacRoman agrees with ASCII in the low-order 7 bits.
|
||||||
const char *str = CFStringGetCStringPtr( lang, kCFStringEncodingMacRoman );
|
const char *str = CFStringGetCStringPtr( lang, kCFStringEncodingMacRoman );
|
||||||
ASSERT( str );
|
if( str )
|
||||||
|
ret = str;
|
||||||
|
else
|
||||||
|
LOG->Warn( "Unable to determine system language. Using English." );
|
||||||
|
|
||||||
ret = RString( str, 2 );
|
ret = RString( str, 2 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user