Commit ae5f9454 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

quartz: Remove no longer necessary call to CoInitialize().

parent 73a5417a
......@@ -158,8 +158,6 @@ static HRESULT unregister_filters(struct regsvr_filter const *list)
HRESULT hr;
IFilterMapper2* pFM2;
CoInitialize(NULL);
hr = CoCreateInstance(&CLSID_FilterMapper2, NULL, CLSCTX_INPROC_SERVER, &IID_IFilterMapper2, (LPVOID*)&pFM2);
if (SUCCEEDED(hr)) {
......@@ -168,8 +166,6 @@ static HRESULT unregister_filters(struct regsvr_filter const *list)
IFilterMapper2_Release(pFM2);
}
CoUninitialize();
return hr;
}
......
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