зеркало из https://github.com/mozilla/pjs.git
Bug 408368 - Suboptimal code in array_sort implementation, code by Igor Bukanov, r=crowder
This commit is contained in:
Родитель
615907ea1a
Коммит
60d4c27edd
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче