From c2ac2a057317d59dc4825772ef4faa6cb2eb3e2a Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Thu, 29 Sep 2011 14:13:16 +1000 Subject: [PATCH] mscoree: Return S_OK from ICorDebug Initialize. --- dlls/mscoree/cordebug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mscoree/cordebug.c b/dlls/mscoree/cordebug.c index 688c2d893df..a2ad032ab51 100644 --- a/dlls/mscoree/cordebug.c +++ b/dlls/mscoree/cordebug.c @@ -86,7 +86,7 @@ static HRESULT WINAPI CorDebug_Initialize(ICorDebug *iface) { RuntimeHost *This = impl_from_ICorDebug( iface ); FIXME("stub %p\n", This); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI CorDebug_Terminate(ICorDebug *iface)