Fix memory leak, change uint to unsigned, bug 584917 followup. r=brendan,njn

This commit is contained in:
Brian Hackett 2010-10-13 16:10:15 -07:00
Родитель ea53e0631f
Коммит d99bd5b987
3 изменённых файлов: 13 добавлений и 11 удалений

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

@ -6587,9 +6587,9 @@ js_DumpObject(JSObject *obj)
fprintf(stderr, "\n");
if (obj->isDenseArray()) {
uint slots = JS_MIN(obj->getArrayLength(), obj->getDenseArrayCapacity());
unsigned slots = JS_MIN(obj->getArrayLength(), obj->getDenseArrayCapacity());
fprintf(stderr, "elements\n");
for (uint i = 0; i < slots; i++) {
for (unsigned i = 0; i < slots; i++) {
fprintf(stderr, " %3d: ", i);
dumpValue(obj->getDenseArrayElement(i));
fprintf(stderr, "\n");
@ -6619,9 +6619,9 @@ js_DumpObject(JSObject *obj)
fprintf(stderr, "private %p\n", obj->getPrivate());
fprintf(stderr, "slots:\n");
uint reservedEnd = JSCLASS_RESERVED_SLOTS(clasp);
uint slots = obj->slotSpan();
for (uint i = 0; i < slots; i++) {
unsigned reservedEnd = JSCLASS_RESERVED_SLOTS(clasp);
unsigned slots = obj->slotSpan();
for (unsigned i = 0; i < slots; i++) {
fprintf(stderr, " %3d ", i);
if (i < reservedEnd)
fprintf(stderr, "(reserved) ");

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

@ -675,6 +675,8 @@ JSObject::finish(JSContext *cx)
#endif
if (hasSlotsArray())
freeSlotsArray(cx);
if (emptyShapes)
cx->free(emptyShapes);
#ifdef JS_THREADSAFE
js_FinishTitle(cx, &title);
#endif