Bug 180129 nsStreamProviderProxy::~nsStreamProviderProxy tries to NS_IF_RELEASE an uninitialized member mObserverProxy

trivial patch by darin r=timeless sr=bz


git-svn-id: svn://10.0.0.236/trunk@133998 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timeless%mozdev.org
2002-11-17 05:16:13 +00:00
parent 5c0613c3b1
commit 6063118db9

View File

@@ -75,7 +75,8 @@ static PRLogModuleInfo *gStreamListenerProxyLog;
//----------------------------------------------------------------------------
nsStreamListenerProxy::nsStreamListenerProxy()
: mLock(nsnull)
: mObserverProxy(nsnull)
, mLock(nsnull)
, mPendingCount(0)
, mPipeEmptied(PR_FALSE)
, mListenerStatus(NS_OK)