Make suspectCurrent assertion not fire constantly after we Fault. b=386664 r+sr=peterv

This commit is contained in:
dbaron@dbaron.org 2007-07-03 14:21:57 -07:00
Родитель 68c77f6e8d
Коммит 91e460c07f
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -2390,7 +2390,8 @@ nsCycleCollector_suspectCurrent(nsISupports *n)
{
if (sCollector) {
PRBool res = sCollector->Suspect(n, PR_TRUE);
NS_ASSERTION(res, "suspectCurrent should not fail");
NS_ASSERTION(res || sCollector->mParams.mDoNothing,
"suspectCurrent should not fail");
}
}