Alistair Leslie-Hughes : mscoree: Return S_OK from ICorDebug Initialize.

Alexandre Julliard julliard at winehq.org
Mon Oct 3 17:21:23 CDT 2011


Module: wine
Branch: master
Commit: c2ac2a057317d59dc4825772ef4faa6cb2eb3e2a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c2ac2a057317d59dc4825772ef4faa6cb2eb3e2a

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Thu Sep 29 14:13:16 2011 +1000

mscoree: Return S_OK from ICorDebug Initialize.

---

 dlls/mscoree/cordebug.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/mscoree/cordebug.c b/dlls/mscoree/cordebug.c
index 688c2d8..a2ad032 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)




More information about the wine-cvs mailing list