зеркало из https://github.com/mozilla/gecko-dev.git
r=jshin, sr=mkaply (OS/2 only) From Peter Weilbacher - use stricmp to silence assertion
This commit is contained in:
Родитель
bf22bc06cf
Коммит
bc8ae3bdfd
|
@ -265,7 +265,7 @@ nsOS2Locale::ParseLocaleString(const char* locale_string, char* language, char*
|
|||
//
|
||||
if ((*src == '@') || (*src == separator)) {
|
||||
src++; // move past the modifier separator
|
||||
NS_ASSERTION(strcmp("euro",src) == 0, "found non euro modifier");
|
||||
NS_ASSERTION(stricmp("euro",src) == 0, "found non euro modifier");
|
||||
dest = modifier;
|
||||
dest_space = MAX_EXTRA_LEN;
|
||||
while ((*src) && (dest_space--)) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче