bug 1321884 - clean up the HeldMutexStack on helper threads r=jonco

The HeldMutexStack is cleaned up in JS_ShutDown() on the main thread, but since
it is thread local we need to clean it up on other threads where it is used.
This commit is contained in:
Trevor Saunders 2016-12-02 15:57:37 -05:00
Родитель 8ccfaa7a63
Коммит b2e95c2ac2
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -1407,6 +1407,7 @@ HelperThread::ThreadMain(void* arg)
FIX_FPU();
static_cast<HelperThread*>(arg)->threadLoop();
Mutex::ShutDown();
}
void