Louis Lenders : kernelbase: Return S_OK in WerSetFlags.

Alexandre Julliard julliard at winehq.org
Fri Oct 9 16:00:44 CDT 2020


Module: wine
Branch: master
Commit: 3d2add846cc69f2b218352d6808a58998540d85f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=3d2add846cc69f2b218352d6808a58998540d85f

Author: Louis Lenders <xerox.xerox2000x at gmail.com>
Date:   Fri Oct  9 10:20:02 2020 +0200

kernelbase: Return S_OK in WerSetFlags.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49966
Signed-off-by: Louis Lenders <xerox.xerox2000x at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/kernelbase/debug.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/kernelbase/debug.c b/dlls/kernelbase/debug.c
index 6acdf0f1ea..0382ea9f95 100644
--- a/dlls/kernelbase/debug.c
+++ b/dlls/kernelbase/debug.c
@@ -819,7 +819,7 @@ HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerRegisterRuntimeExceptionModule( const
 HRESULT WINAPI /* DECLSPEC_HOTPATCH */ WerSetFlags( DWORD flags )
 {
     FIXME("(%d) stub\n", flags);
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 




More information about the wine-cvs mailing list