Commit 90651149 authored by erik.corry@gmail.com's avatar erik.corry@gmail.com

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
parent a29255e3
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment