quartz: Don't clean up in avi decoder if driver isn't opened.
This commit is contained in:
parent
296a59da7e
commit
48f80f6296
|
@ -146,6 +146,9 @@ static HRESULT AVIDec_ProcessEnd(TransformFilterImpl* pTransformFilter)
|
|||
|
||||
TRACE("(%p)->()\n", This);
|
||||
|
||||
if (!This->hvid)
|
||||
return S_OK;
|
||||
|
||||
result = ICDecompressEnd(This->hvid);
|
||||
if (result != ICERR_OK)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue