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

Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2020-02-10 14:41:32 -06:00 committed by Alexandre Julliard
parent e75d5b8dc7
commit 73a5417a02

View file

@ -158,10 +158,6 @@ HRESULT WINAPI DllRegisterServer(void)
if (FAILED(res))
return res;
/*** ActiveMovieFilter Categories ***/
CoInitialize(NULL);
res = CoCreateInstance(&CLSID_FilterMapper2, NULL, CLSCTX_INPROC,
&IID_IFilterMapper2, &mapvptr);
if (SUCCEEDED(res))
@ -191,8 +187,6 @@ HRESULT WINAPI DllRegisterServer(void)
IFilterMapper2_Release(pMapper);
}
CoUninitialize();
return res;
}