http://bugs.winehq.org/show_bug.cgi?id=5963
Summary: Photoshop CS2 Trial fails when run for more then 1 time Product: Wine Version: 0.9.17. Platform: Other URL: http://www.adobe.com/cfusion/tdrc/index.cfm?loc=en&produ ct=photoshop OS/Version: other Status: NEW Keywords: download Severity: normal Priority: P2 Component: wine-misc AssignedTo: wine-bugs@winehq.org ReportedBy: xerox_xerox2000@yahoo.co.uk
Hi, this is one of the top-voted apps, i gave it a try and so i thought i file bug for it. Steps to reproduce: 1. download the trial and find and copy the serial number in the file /Photoshop\ TryOut/Photoshop\ CS2/Adobe(R)\ Photoshop(R)\ CS2/Abcpy.ini. 2. When the installer asks for the serial number, navigate with the tab-key into that field and paste it with ctrl^v. 3. Until bug 5348 is fixed i use following dumb hack to get it installed
--- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -741,8 +741,8 @@ static UINT ITERATE_Actions(MSIRECORD *r rc = ERROR_SUCCESS;
if (rc != ERROR_SUCCESS) - ERR("Execution halted, action %s returned %i\n", debugstr_w(action), rc); - +{ ERR("Execution halted, action %s returned %i\n", debugstr_w(action), rc); +rc = ERROR_SUCCESS;} return rc; }
4. After installation i can start Photoshop and it seems to work fine. However, every time i try to run it the second time, the application stops with a message box that a hardware or system error has occurred. This bug is 100% reproducable. If i start with a clean .wine again it works fine (e.g. i do 'mv ~/.wine ~/.wine_photoshop' and run 'wine ~/.wine_photoshop/drive_c/Program\ Files/Adobe/Adobe\ Photoshop CS2/Photoshop.exe') When i run Photoshop the 2nd time like this bug is again present.
Maybe someone could give me some hints to debug this further.