Bug 1547203 - Don't expose CTypes with --fuzzing-safe in JS shell. r=jandem

Differential Revision: https://phabricator.services.mozilla.com/D28961

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Christian Holler 2019-04-26 09:19:12 +00:00
Родитель 7356311115
Коммит 9b898220a5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -9915,7 +9915,7 @@ static JSObject* NewGlobalObject(JSContext* cx, JS::RealmOptions& options,
"having its [[Prototype]] be immutable");
#ifdef JS_HAS_CTYPES
if (!JS_InitCTypesClass(cx, glob)) {
if (!fuzzingSafe && !JS_InitCTypesClass(cx, glob)) {
return nullptr;
}
#endif