Bug 907937 - Followup fix for review-nit bustage. r=me CLOSED TREE

This commit is contained in:
Bobby Holley 2013-08-22 12:54:05 -07:00
Родитель 0b5f94b524
Коммит 8fb2b21340
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -366,7 +366,7 @@ JSCompartment::wrap(JSContext *cx, MutableHandleObject obj, HandleObject existin
bool
JSCompartment::wrapId(JSContext *cx, jsid *idp)
{
JS_ASSERT(*idp != JSID_VOID, "JSID_VOID is an out-of-band sentinel value");
MOZ_ASSERT(*idp != JSID_VOID, "JSID_VOID is an out-of-band sentinel value");
if (JSID_IS_INT(*idp))
return true;
RootedValue value(cx, IdToValue(*idp));