Bug 1710018: Remove the shutdown assertion from pref_SetPref to just rely on the NS_ERROR_ILLEGAL_DURING_SHUTDOWN failure return. r=dom-worker-reviewers,jesup

Differential Revision: https://phabricator.services.mozilla.com/D137171
This commit is contained in:
Jens Stutte 2022-01-27 22:21:10 +00:00
Родитель fd6d94936e
Коммит 547252a993
1 изменённых файлов: 0 добавлений и 3 удалений

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

@ -1586,9 +1586,6 @@ static nsresult pref_SetPref(const nsCString& aPrefName, PrefType aType,
MOZ_ASSERT(NS_IsMainThread());
if (AppShutdown::IsInOrBeyond(ShutdownPhase::XPCOMShutdownThreads)) {
MOZ_ASSERT(
false,
"!AppShutdown::IsInOrBeyond(ShutdownPhase::XPCOMShutdownThreads)");
return NS_ERROR_ILLEGAL_DURING_SHUTDOWN;
}