shdocvw [1/3]: Return S_OK in PersistStorage_InitNew

James Hawkins truiken at gmail.com
Fri Oct 6 20:11:46 CDT 2006


Hi,

The following three patches fix the recent "regression" in OleCreate.
They enable the Adobe installers to not crash when trying to display
their EULAs.

We also return S_OK in the PersistStorage_Load stub.

Changelog:
* Return S_OK in PersistStorage_InitNew.

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

-- 
James Hawkins
-------------- next part --------------
diff --git a/dlls/shdocvw/persist.c b/dlls/shdocvw/persist.c
index 04afb42..b4fecbb 100644
--- a/dlls/shdocvw/persist.c
+++ b/dlls/shdocvw/persist.c
@@ -67,7 +67,7 @@ static HRESULT WINAPI PersistStorage_Ini
 {
     WebBrowser *This = PERSTORAGE_THIS(iface);
     FIXME("(%p)->(%p)\n", This, pStg);
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 static HRESULT WINAPI PersistStorage_Load(IPersistStorage *iface, LPSTORAGE pStg)
-- 
1.4.2.1


More information about the wine-patches mailing list