Bug 1004295 - Hard abort if we try to unload modules when loader global reuse is enabled. r=mccr8

This commit is contained in:
Bobby Holley 2014-05-01 11:02:59 -07:00
Родитель 9e7c54c4c3
Коммит 2645da308a
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -1372,6 +1372,9 @@ mozJSComponentLoader::Unload(const nsACString & aLocation)
return NS_OK;
}
MOZ_RELEASE_ASSERT(!mReuseLoaderGlobal, "Module unloading not supported when "
"compartment sharing is enabled");
nsCOMPtr<nsIIOService> ioService = do_GetIOService(&rv);
NS_ENSURE_SUCCESS(rv, rv);