зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1481772 - Remove unnecessary JSAutoRealm in mozJSComponentLoader::ImportInto. r=kmag
This commit is contained in:
Родитель
30046206a2
Коммит
6b5c6b10aa
|
@ -994,7 +994,6 @@ mozJSComponentLoader::ImportInto(const nsACString& registryLocation,
|
|||
RootedValue targetVal(cx, targetValArg);
|
||||
RootedObject targetObject(cx, nullptr);
|
||||
|
||||
Maybe<JSAutoRealm> ar;
|
||||
if (optionalArgc) {
|
||||
// The caller passed in the optional second argument. Get it.
|
||||
if (targetVal.isObject()) {
|
||||
|
@ -1018,9 +1017,6 @@ mozJSComponentLoader::ImportInto(const nsACString& registryLocation,
|
|||
}
|
||||
} else {
|
||||
FindTargetObject(cx, &targetObject);
|
||||
if (targetObject) {
|
||||
ar.emplace(cx, targetObject);
|
||||
}
|
||||
}
|
||||
|
||||
js::AssertSameCompartment(cx, targetObject);
|
||||
|
|
Загрузка…
Ссылка в новой задаче