mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 13:42:48 +00:00
Bug 404755: fixing memory leak resulted from bug 363603. a,r=brendan
This commit is contained in:
parent
cde1accb1a
commit
d1174f4fdd
@ -2944,6 +2944,8 @@ js_FreeSlot(JSContext *cx, JSObject *obj, uint32 slot)
|
||||
JS_ASSERT(!MAP_IS_NATIVE(map) || ((JSScope *)map)->object == obj);
|
||||
LOCKED_OBJ_SET_SLOT(obj, slot, JSVAL_VOID);
|
||||
if (map->freeslot == slot + 1) {
|
||||
map->freeslot = slot;
|
||||
|
||||
/* When shrinking ReallocSlots always returns true. */
|
||||
ReallocSlots(cx, obj, slot, JS_FALSE);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user