Bug 408368 - Suboptimal code in array_sort implementation, code by Igor Bukanov, r=crowder

This commit is contained in:
crowder%fiverocks.com 2007-12-14 17:30:20 +00:00
Родитель 615907ea1a
Коммит 60d4c27edd
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1257,8 +1257,10 @@ array_sort(JSContext *cx, uintN argc, jsval *vp)
* to make it fast and unroot the cached results of toString
* invocations before the callback has a chance to run the GC.
*/
for (i = 0; i < newlen; i++)
i = 0;
do {
vec[i] = vec[2 * i + 1];
} while (++i != newlen);
}
} else {
void *mark;