Fix bug #122076. r=brendan. Stop [] parse loop from wandering off into the

weeds.
This commit is contained in:
rogerl%netscape.com 2003-03-22 03:42:22 +00:00
Родитель f9e9c8ab3d
Коммит c6d91b4c6a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -915,7 +915,7 @@ ParseAtom(CompilerState *state)
}
if ((c = *cp++) == ']')
break;
if (c == '\\' && (cp+1 != state->cpend))
if (c == '\\' && (cp != state->cpend))
cp++;
} while (JS_TRUE);
ren->u.kid2 = (void *)(cp - 1);