Follow-up to rev bed748189cd0 to fix a compiler warning. r=njn via IRC.

This commit is contained in:
Jason Orendorff 2010-04-27 17:43:20 -05:00
Родитель 80f490799e
Коммит ad50b202ee
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -6464,10 +6464,12 @@ js_SetReservedSlot(JSContext *cx, JSObject *obj, uint32 index, jsval v)
return true;
JSClass *clasp = obj->getClass();
uint32 limit = JSCLASS_RESERVED_SLOTS(clasp);
JS_LOCK_OBJ(cx, obj);
#ifdef DEBUG
uint32 limit = JSCLASS_RESERVED_SLOTS(clasp);
JS_ASSERT(index < limit || ReservedSlotIndexOK(cx, obj, clasp, index, limit));
#endif
uint32 slot = JSSLOT_START(clasp) + index;
if (slot >= JS_INITIAL_NSLOTS && !obj->dslots) {