adding check for null. GetThreadEventQueue can return a null queue which we need to check for

This commit is contained in:
dougt%netscape.com 2002-01-15 00:43:10 +00:00
Родитель f55fdd94e4
Коммит e19cc60bdb
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -322,8 +322,8 @@ void nsTimerImpl::Fire()
nsCOMPtr<nsIEventQueue> queue;
if (gThread)
gThread->mEventQueueService->GetThreadEventQueue(thread, getter_AddRefs(queue));
queue->PostEvent(&event->e);
if (queue)
queue->PostEvent(&event->e);
}
void nsTimerImpl::SetDelayInternal(PRUint32 aDelay)