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.