http://codereview.chromium.org/371067 thanks to Jan de Mooij
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3249 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
a29255e334
commit
9065114928
@ -4077,7 +4077,7 @@ static void AddUncanonicals(ZoneList<CharacterRange>* ranges,
|
||||
int length = uncanonicalize.get(i, '\0', chars);
|
||||
for (int j = 0; j < length; j++) {
|
||||
uc32 chr = chars[j];
|
||||
if (chr != i && chr < bottom || chr > top) {
|
||||
if (chr != i && (chr < bottom || chr > top)) {
|
||||
characters->Add(chr);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user