Commit 32de0220 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

ole32: Remove initialized state test in CoCreateInstanceEx().

We only have same machine case working, CoGetClassObject() checks already cover that. Signed-off-by: 's avatarNikolay Sivov <nsivov@codeweavers.com> Signed-off-by: 's avatarHuw Davies <huw@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 0efea848
...@@ -2969,7 +2969,6 @@ HRESULT WINAPI DECLSPEC_HOTPATCH CoCreateInstanceEx( ...@@ -2969,7 +2969,6 @@ HRESULT WINAPI DECLSPEC_HOTPATCH CoCreateInstanceEx(
{ {
IUnknown *unk = NULL; IUnknown *unk = NULL;
IClassFactory *cf; IClassFactory *cf;
APARTMENT *apt;
CLSID clsid; CLSID clsid;
HRESULT hres; HRESULT hres;
...@@ -2987,13 +2986,6 @@ HRESULT WINAPI DECLSPEC_HOTPATCH CoCreateInstanceEx( ...@@ -2987,13 +2986,6 @@ HRESULT WINAPI DECLSPEC_HOTPATCH CoCreateInstanceEx(
if(FAILED(hres)) if(FAILED(hres))
clsid = *rclsid; clsid = *rclsid;
if (!(apt = apartment_get_current_or_mta()))
{
ERR("apartment not initialised\n");
return CO_E_NOTINITIALIZED;
}
apartment_release(apt);
/* /*
* Get a class factory to construct the object we want. * Get a class factory to construct the object we want.
*/ */
......
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