Bug 1481772 - Remove unnecessary JSAutoRealm in mozJSComponentLoader::ImportInto. r=kmag

This commit is contained in:
Jan de Mooij 2018-08-09 10:48:29 +02:00
Родитель 30046206a2
Коммит 6b5c6b10aa
1 изменённых файлов: 0 добавлений и 4 удалений

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

@ -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);