Bug 331012 - topcrash on exit [@timerthread::updatefilter] - r=darin

This commit is contained in:
benjamin%smedbergs.us 2006-03-21 14:46:35 +00:00
Родитель 5f483e27f3
Коммит 4ab3ceb1e4
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -391,7 +391,8 @@ void nsTimerImpl::Fire()
// calling Fire().
timeout -= PR_MillisecondsToInterval(mDelay);
}
gThread->UpdateFilter(mDelay, timeout, now);
if (gThread)
gThread->UpdateFilter(mDelay, timeout, now);
mFiring = PR_TRUE;