From e55ed113faee6c3d52cdd5043069f041c34c7bc0 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Fri, 6 Oct 2006 18:11:46 -0700 Subject: [PATCH] shdocvw: Return S_OK in PersistStorage_InitNew. --- dlls/shdocvw/persist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shdocvw/persist.c b/dlls/shdocvw/persist.c index 04afb4264cb..b4fecbbfe35 100644 --- a/dlls/shdocvw/persist.c +++ b/dlls/shdocvw/persist.c @@ -67,7 +67,7 @@ static HRESULT WINAPI PersistStorage_InitNew(IPersistStorage *iface, LPSTORAGE p { 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)