[Bug 13969] Photocameras Adjustment Software: crashes after pressing a button.

wine-bugs at winehq.org wine-bugs at winehq.org
Tue Jun 17 11:01:40 CDT 2008


http://bugs.winehq.org/show_bug.cgi?id=13969


Louis Lenders <xerox_xerox2000 at yahoo.co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |xerox_xerox2000 at yahoo.co.uk




--- Comment #2 from Louis Lenders <xerox_xerox2000 at yahoo.co.uk>  2008-06-17 11:01:36 ---
My guess would be the problem is:
fixme:shdocvw:WebBrowser_GetIDsOfNames
(0x150f08)->({00000000-0000-0000-0000-000000000000} 0x32ee88 1 1033 0x32ee8c)

Could you try what the app does with stupid hack below? It's not a real patch,
just to track down of the problem is the missing apo from above


diff --git a/dlls/shdocvw/webbrowser.c b/dlls/shdocvw/webbrowser.c
index 50c3b34..cea8446 100644
--- a/dlls/shdocvw/webbrowser.c
+++ b/dlls/shdocvw/webbrowser.c
@@ -184,7 +184,7 @@ static HRESULT WINAPI WebBrowser_GetIDsOfNames(IWebBrowser2
*iface, REFIID riid,
     WebBrowser *This = WEBBROWSER_THIS(iface);
     FIXME("(%p)->(%s %p %d %d %p)\n", This, debugstr_guid(riid), rgszNames,
cNames,
             lcid, rgDispId);
-    return E_NOTIMPL;
+    return 0;
 }

 static HRESULT WINAPI WebBrowser_Invoke(IWebBrowser2 *iface, DISPID
dispIdMember,


-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.



More information about the wine-bugs mailing list