mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
quartz: Fully disconnect the AsyncReader when released.
This commit is contained in:
parent
1f03896e00
commit
3487da71ce
@ -378,7 +378,16 @@ static ULONG WINAPI AsyncReader_Release(IBaseFilter * iface)
|
||||
if (!refCount)
|
||||
{
|
||||
if (This->pOutputPin)
|
||||
{
|
||||
IPin *pConnectedTo;
|
||||
if(SUCCEEDED(IPin_ConnectedTo(This->pOutputPin, &pConnectedTo)))
|
||||
{
|
||||
IPin_Disconnect(pConnectedTo);
|
||||
IPin_Release(pConnectedTo);
|
||||
}
|
||||
IPin_Disconnect(This->pOutputPin);
|
||||
IPin_Release(This->pOutputPin);
|
||||
}
|
||||
This->csFilter.DebugInfo->Spare[0] = 0;
|
||||
DeleteCriticalSection(&This->csFilter);
|
||||
This->lpVtbl = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user