Commit 48f80f62 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

quartz: Don't clean up in avi decoder if driver isn't opened.

parent 296a59da
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment