Typo. Fix bug # 129794: plug leak due to circular ownership. r=dp sr=ben a=roc+moz

This commit is contained in:
rjc%netscape.com 2002-03-12 10:28:18 +00:00
Родитель b0be8e04f7
Коммит 84a17440f6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -852,7 +852,7 @@ nsWindowMediator::Release()
// We need a special implementation of Release() because our mInner
// holds a Circular References back to us.
NS_PRECONDITION(PRInt32(mRefCnt) > 0, "duplicate release");
--gRefCnt;
--mRefCnt;
NS_LOG_RELEASE(this, mRefCnt, "nsWindowMediator");
if (mInner && mRefCnt == 1)