[PATCH 1/2] wer: Return S_OK from WerReportSetParameter

Detlef Riekenberg wine.dev at web.de
Tue Jul 24 17:19:52 CDT 2012


The office 2013 web installer detect a failure and try
to build and send an error report.
This let the web installer go a step further.

--
By by ... Detlef
---
 dlls/wer/main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/wer/main.c b/dlls/wer/main.c
index 78943eb..0f5ad54 100644
--- a/dlls/wer/main.c
+++ b/dlls/wer/main.c
@@ -315,7 +315,7 @@ HRESULT WINAPI WerReportSetParameter(HREPORT hreport, DWORD id, PCWSTR name, PCW
 {
     FIXME("(%p, %d, %s, %s) :stub\n", hreport, id, debugstr_w(name), debugstr_w(value));
 
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 /***********************************************************************
-- 
1.7.5.4




More information about the wine-patches mailing list