This commit is contained in:
Gregor Wagner 2010-09-30 00:47:44 -07:00
Родитель a81f5879a9
Коммит e132154a8d
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -123,7 +123,7 @@ TestShellCommandParent::RunCallback(const nsString& aResponse)
NS_ENSURE_TRUE(global, JS_FALSE);
JSAutoEnterCompartment ac;
if (!ac.enter(cx, global)) {
if (!ac.enter(mCx, global)) {
NS_ERROR("Failed to enter compartment!");
return false;
}

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

@ -612,7 +612,7 @@ ProcessFile(JSContext *cx,
JSAutoEnterCompartment ac;
if (!ac.enter(cx, obj)) {
NS_ERROR("Failed to enter compartment!");
return false;
return;
}
JSScript* script =
@ -639,7 +639,7 @@ ProcessFile(JSContext *cx,
JSAutoEnterCompartment ac;
if (!ac.enter(cx, obj)) {
NS_ERROR("Failed to enter compartment!");
return false;
return;
}
/*
@ -1223,7 +1223,7 @@ XPCShellEnvironment::EvaluateString(const nsString& aString,
JSObject* global = GetGlobalObject();
JSAutoEnterCompartment ac;
if (!ac.enter(cx, global)) {
if (!ac.enter(mCx, global)) {
NS_ERROR("Failed to enter compartment!");
return false;
}