Bug 503638 OOM crash [@ PL_DHashTableOperate | _MD_CURRENT_THREAD] in nsCycleCollector

r=dbaron
This commit is contained in:
timeless@mozdev.org 2010-02-28 11:23:59 +01:00
Родитель a2736cbe44
Коммит ffcd231df9
1 изменённых файлов: 9 добавлений и 0 удалений

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

@ -1377,6 +1377,7 @@ public:
GCGraphBuilder(GCGraph &aGraph,
nsCycleCollectionLanguageRuntime **aRuntimes);
~GCGraphBuilder();
bool Initialized();
PRUint32 Count() const { return mPtrToNodeMap.entryCount; }
@ -1430,6 +1431,12 @@ GCGraphBuilder::~GCGraphBuilder()
PL_DHashTableFinish(&mPtrToNodeMap);
}
bool
GCGraphBuilder::Initialized()
{
return !!mPtrToNodeMap.ops;
}
PtrInfo*
GCGraphBuilder::AddNode(void *s, nsCycleCollectionParticipant *aParticipant
IF_DEBUG_CC_PARAM(PRUint32 aLangID)
@ -2581,6 +2588,8 @@ nsCycleCollector::BeginCollection()
return PR_FALSE;
GCGraphBuilder builder(mGraph, mRuntimes);
if (!builder.Initialized())
return PR_FALSE;
#ifdef COLLECT_TIME_DEBUG
PRTime now = PR_Now();