mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
strmbase: Fixed user-after-free (Coverity).
This commit is contained in:
parent
542fe17a05
commit
2ba014bf40
1 changed files with 1 additions and 1 deletions
|
@ -343,8 +343,8 @@ ULONG WINAPI TransformFilterImpl_Release(IBaseFilter * iface)
|
||||||
DeleteCriticalSection(&This->csReceive);
|
DeleteCriticalSection(&This->csReceive);
|
||||||
FreeMediaType(&This->pmt);
|
FreeMediaType(&This->pmt);
|
||||||
QualityControlImpl_Destroy(This->qcimpl);
|
QualityControlImpl_Destroy(This->qcimpl);
|
||||||
CoTaskMemFree(This);
|
|
||||||
IUnknown_Release(This->seekthru_unk);
|
IUnknown_Release(This->seekthru_unk);
|
||||||
|
CoTaskMemFree(This);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue