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

git-svn-id: svn://10.0.0.236/trunk@116389 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rjc%netscape.com 2002-03-12 10:28:18 +00:00
parent e47e30f4ce
commit 8c77c5a067

View File

@ -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)