[Bug 59369] New: RadioBoss 7.1.6.2 EXCEPTION_ACCESS_VIOLATION
http://bugs.winehq.org/show_bug.cgi?id=59369 Bug ID: 59369 Summary: RadioBoss 7.1.6.2 EXCEPTION_ACCESS_VIOLATION Product: Wine Version: 10.0 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@list.winehq.org Reporter: wargreen@lebib.org Distribution: --- Created attachment 80312 --> http://bugs.winehq.org/attachment.cgi?id=80312 output of wine with WINEDEBUG=warn+all in a fresh wine64 prefix. Dear Wine devs, After installing RadioBoss 7.1.6.2 from the website (demo version available at https://www.djsoft.net/enu/download.htm), launching it lead a EXCEPTION_ACCESS_VIOLATION. I have find some issues with other Delphi software that lead the same issue : https://forum.winehq.org/viewtopic.php?t=28602 https://forum.winehq.org/viewtopic.php?t=4930 https://forum.winehq.org/viewtopic.php?t=4155 I have tried to install the mentioned winetricks verbs but the issue still. Also tried : launch it via Bottles with wine 11.0 and soda 9.0-1, with the same issue. System configuration : Debian SID updated recently Wine wine-10.0 (debian 10.0~repack-12+b1) from debian's repo Thanks a lot for all tips Regards -- 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.
http://bugs.winehq.org/show_bug.cgi?id=59369 --- Comment #1 from wargreen@lebib.org --- Created attachment 80313 --> http://bugs.winehq.org/attachment.cgi?id=80313 Radioboss bug's report When the error happen, a debug tool is shown. Bug report saved from this tool. -- 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.
http://bugs.winehq.org/show_bug.cgi?id=59369 wargreen@lebib.org changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://www.djsoft.net/enu/ | |download.htm Distribution|--- |Debian -- 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.
http://bugs.winehq.org/show_bug.cgi?id=59369 Louis Lenders <xerox.xerox2000x@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Status|UNCONFIRMED |NEW CC| |xerox.xerox2000x@gmail.com Keywords| |download --- Comment #2 from Louis Lenders <xerox.xerox2000x@gmail.com> --- Confirming. The EXCEPTION_ACCESS_VIOLATION looks like a duplicate of https://bugs.winehq.org/show_bug.cgi?id=58961 so I'll paste comment from there here below. But even after applying dumb hack below, I get a message "Interface not supported". And the GUI main area is white, which I guess is not right... Copy/paste from bug 58961: The access violation is just after failing call to SHGetImageList. The hack below makes the program start for me ( SHGetImageList is called with iImageList = -1) . I don't know how to fix this bug, maybe one of the devs might know what's going on. HACK: diff --git a/dlls/shell32/iconcache.c b/dlls/shell32/iconcache.c index 9433361440c..7a131ce4c9d 100644 --- a/dlls/shell32/iconcache.c +++ b/dlls/shell32/iconcache.c @@ -1135,7 +1135,7 @@ HRESULT WINAPI SHGetImageList(int iImageList, REFIID riid, void **ppv) TRACE("(%d, %s, %p)\n", iImageList, debugstr_guid(riid), ppv); if (iImageList < 0 || iImageList > SHIL_LAST) - return E_FAIL; + iImageList = 0;//return E_FAIL; InitOnceExecuteOnce( &sic_init_once, SIC_Initialize, NULL, NULL ); return HIMAGELIST_QueryInterface(shell_imagelists[iImageList], riid, ppv); -- 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.
participants (1)
-
WineHQ Bugzilla