From 9dc2563aaa8989109f3a8fe9db581c8fcd2df07e Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Sat, 22 Jul 2006 15:13:36 +0200 Subject: [PATCH] shdocvw: Return S_OK in IPersistStreamInit::Load. --- 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 3a084478e63..04afb4264cb 100644 --- a/dlls/shdocvw/persist.c +++ b/dlls/shdocvw/persist.c @@ -148,7 +148,7 @@ static HRESULT WINAPI PersistStreamInit_Load(IPersistStreamInit *iface, LPSTREAM { WebBrowser *This = PERSTRINIT_THIS(iface); FIXME("(%p)->(%p)\n", This, pStg); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI PersistStreamInit_Save(IPersistStreamInit *iface, LPSTREAM pStg, -- 2.11.4.GIT