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:
parent
e75d5b8dc7
commit
73a5417a02
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue