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

trivial patch by darin r=timeless sr=bz
This commit is contained in:
timeless%mozdev.org 2002-11-17 05:16:13 +00:00
Родитель 564f46c175
Коммит ad7a793efe
1 изменённых файлов: 2 добавлений и 1 удалений

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

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