Take care of reviewer comment (bug 373219).

This commit is contained in:
peterv%propagandism.org 2007-03-09 13:49:45 +00:00
Родитель e1c3967e00
Коммит 21bb9cfe9c
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -1532,7 +1532,7 @@ nsCycleCollector::Suspect(nsISupports *n)
if (!NS_IsMainThread())
Fault("trying to suspect from non-main thread");
if (!n || !nsCycleCollector_isScanSafe(n))
if (!nsCycleCollector_isScanSafe(n))
Fault("suspected a non-scansafe pointer", n);
if (nsCycleCollector_shouldSuppress(n))
@ -1764,6 +1764,9 @@ nsCycleCollector_isScanSafe(nsISupports *s)
{
nsresult rv;
if (!s)
return PR_FALSE;
nsCOMPtr<nsCycleCollectionParticipant> cp = do_QueryInterface(s, &rv);
if (NS_FAILED(rv)) {
sCollector.mStats.mFailedQI++;