[Bug 21150] New: exPressit crashes

wine-bugs at winehq.org wine-bugs at winehq.org
Thu Dec 24 11:33:18 CST 2009


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

           Summary: exPressit crashes
           Product: Wine
           Version: 1.1.35
          Platform: x86
               URL: http://www.jumpjet.info/Win2k/05/exPressit_Label_Desig
                    n_Studio/exPressit.zip
        OS/Version: Linux
            Status: NEW
          Keywords: download
          Severity: normal
          Priority: P2
         Component: shdocvw
        AssignedTo: wine-bugs at winehq.org
        ReportedBy: xerox_xerox2000 at yahoo.co.uk


Hi a user reported this crash in appdb. I gave it a try and after starting ,
and choosing default project it crashes.  I'll attach a crash log. The problem
seems to be unimplemented OleObject_Advise in shdocvw. Faking success like in
the hack below makes the app start fine.

diff --git a/dlls/shdocvw/oleobject.c b/dlls/shdocvw/oleobject.c
index dde850f..8322525 100644
--- a/dlls/shdocvw/oleobject.c
+++ b/dlls/shdocvw/oleobject.c
@@ -516,7 +516,7 @@ static HRESULT WINAPI OleObject_Advise(IOleObject *iface,
IA
 {
     WebBrowser *This = OLEOBJ_THIS(iface);
     FIXME("(%p)->(%p, %p)\n", This, pAdvSink, pdwConnection);
-    return E_NOTIMPL;
+    return 0;//E_NOTIMPL;
 }

-- 
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