зеркало из https://github.com/mozilla/pjs.git
Fix nul-termination assumption hidden in lastIndexOf, broken by dependent strings fix for bug 56940 (107771, r=jag, sr=waterson).
This commit is contained in:
Родитель
0dbd8593f1
Коммит
7ba7e859ed
|
@ -1002,7 +1002,8 @@ str_lastIndexOf(JSContext *cx, JSObject *obj, uintN argc, jsval *argv,
|
||||||
|
|
||||||
j = 0;
|
j = 0;
|
||||||
while (i >= 0) {
|
while (i >= 0) {
|
||||||
if (text[i + j] == pat[j]) {
|
/* Don't assume that text is NUL-terminated: it could be dependent. */
|
||||||
|
if (i + j < textlen && text[i + j] == pat[j]) {
|
||||||
if (++j == patlen)
|
if (++j == patlen)
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче