[xiph-commits] r8052 - trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder

illiminable at motherfish-iii.xiph.org illiminable at motherfish-iii.xiph.org
Mon Oct 18 23:03:02 PDT 2004


Author: illiminable
Date: 2004-10-18 23:03:02 -0700 (Mon, 18 Oct 2004)
New Revision: 8052

Modified:
   trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeOutputPin.cpp
Log:
* Abstract audio decoder leak free.

Modified: trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeOutputPin.cpp
===================================================================
--- trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeOutputPin.cpp	2004-10-19 06:01:59 UTC (rev 8051)
+++ trunk/oggdsf/src/lib/core/directshow/dsfAbstractAudioDecoder/AbstractAudioDecodeOutputPin.cpp	2004-10-19 06:03:02 UTC (rev 8052)
@@ -183,7 +183,7 @@
 	mParentFilter->mInputPin->NonDelegatingQueryInterface(IID_IMediaSeeking, (void**)&locSeeker);
 	SetDelegate(locSeeker);
 	//
-	mDataQueue = new COutputQueue (inReceivePin, &locHR, FALSE, TRUE, 1, TRUE, 20);
+	mDataQueue = new COutputQueue (inReceivePin, &locHR, FALSE, TRUE, 1, TRUE, 20);			//Deleted in destructor
 	if (FAILED(locHR)) {
 		locHR = locHR;
 	}



More information about the commits mailing list