Bug 1736385 - Assert if mShutdown is true in destructor, r=necko-reviewers,jesup

Differential Revision: https://phabricator.services.mozilla.com/D185417
This commit is contained in:
Kershaw Chang 2023-08-14 15:49:30 +00:00
Родитель e1f55c565b
Коммит 537380474e
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -164,6 +164,11 @@ CacheIOThread::CacheIOThread() {
}
CacheIOThread::~CacheIOThread() {
{
MonitorAutoLock lock(mMonitor);
MOZ_RELEASE_ASSERT(mShutdown);
}
if (mXPCOMThread) {
nsIThread* thread = mXPCOMThread;
thread->Release();