mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
bug 102515: fix assertion from previous patch
checkin for mailto:andreas.otte@debitel.net, r=bstell@netscape.com, sr=blizzard@mozilla.org
This commit is contained in:
parent
46a19168bb
commit
228e9414f1
@ -244,7 +244,7 @@ nsPosixLocale::ParseLocaleString(const char* locale_string, char* language, char
|
||||
|
||||
if (*src == '@') {
|
||||
src++; // move past the modifier separator
|
||||
NS_ASSERTION(strcmp("euro",src) != 0, "found non euro modifier");
|
||||
NS_ASSERTION(strcmp("euro",src) == 0, "found non euro modifier");
|
||||
dest = modifier;
|
||||
dest_space = MAX_EXTRA_LEN;
|
||||
while ((*src) && (dest_space--)) {
|
||||
|
Loading…
Reference in New Issue
Block a user