Louis Lenders : shdocvw: Change return value for PersistMemory_Load.
Module: wine Branch: master Commit: 8e84f38178c1105cb682a745ccf32fe3bfda6d0d URL: http://source.winehq.org/git/wine.git/?a=commit;h=8e84f38178c1105cb682a745cc... Author: Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> Date: Thu Jan 10 13:25:23 2008 +0000 shdocvw: Change return value for PersistMemory_Load. --- dlls/shdocvw/persist.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/shdocvw/persist.c b/dlls/shdocvw/persist.c index 940dd16..6c4f1e5 100644 --- a/dlls/shdocvw/persist.c +++ b/dlls/shdocvw/persist.c @@ -155,7 +155,7 @@ static HRESULT WINAPI PersistMemory_Load(IPersistMemory *iface, LPVOID pMem, ULO { WebBrowser *This = PERMEMORY_THIS(iface); FIXME("(%p)->(%p %x)\n", This, pMem, cbSize); - return E_NOTIMPL; + return S_OK; } static HRESULT WINAPI PersistMemory_Save(IPersistMemory *iface, LPVOID pMem,
participants (1)
-
Alexandre Julliard