mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 04:10:04 +00:00
quartz: Use FreeLibrary instead of CloseHandle (Coverity).
This commit is contained in:
parent
7ddb8e25bb
commit
b745d8692b
@ -838,7 +838,7 @@ static ULONG WINAPI VMR9Inner_Release(IUnknown * iface)
|
||||
{
|
||||
TRACE("Destroying\n");
|
||||
BaseControlWindow_Destroy(&This->baseControlWindow);
|
||||
CloseHandle(This->hD3d9);
|
||||
FreeLibrary(This->hD3d9);
|
||||
|
||||
if (This->allocator)
|
||||
IVMRSurfaceAllocatorEx9_Release(This->allocator);
|
||||
@ -2308,7 +2308,7 @@ static HRESULT vmr_create(IUnknown *outer_unk, LPVOID *ppv, const CLSID *clsid)
|
||||
|
||||
fail:
|
||||
BaseRendererImpl_Release(&pVMR->renderer.filter.IBaseFilter_iface);
|
||||
CloseHandle(pVMR->hD3d9);
|
||||
FreeLibrary(pVMR->hD3d9);
|
||||
CoTaskMemFree(pVMR);
|
||||
return hr;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user