Bug 1753948 - Support MOZ_FUZZ_DEBUG in nsJSUtils. r=baku

Differential Revision: https://phabricator.services.mozilla.com/D137989
This commit is contained in:
Christian Holler 2022-02-07 14:08:27 +00:00
Родитель d4df5b2e10
Коммит df4991fb3f
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -248,6 +248,11 @@ void nsJSUtils::ResetTimeZone() { JS::ResetTimeZone(); }
/* static */
bool nsJSUtils::DumpEnabled() {
#ifdef FUZZING
static bool mozFuzzDebug = !!PR_GetEnv("MOZ_FUZZ_DEBUG");
return mozFuzzDebug;
#endif
#if defined(DEBUG) || defined(MOZ_ENABLE_JS_DUMP)
return true;
#else