http://bugs.winehq.org/show_bug.cgi?id=23312
Summary: have downloaded and installed Photo! Editor, Click on .exe or desktop icon, getting "Program Error" message box Product: Wine Version: unspecified Platform: x86 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs@winehq.org ReportedBy: enquiries@nemosphotography.co.uk
(new to all this).Running Linux MINT 9 Isadora ...... have downloaded and installed Photo! Editor,
http://pho.to/editor/download.php
have done the "permissions", but when I click on the .exe file in wine, I get a "Program Error" message box with ***************************************************************************
" The program "Photo!Editor.exe has encountered a serious problem and needs to close. We are sorry for the inconvenience.
This can be caused by a problem in the program or a deficiency in WINE... you may want to check appdb.winehq.org for tips about running this application
(been there, couldn`t find anything)
If this problem is not present under windows ( it works fine in windows Vista) and has not been reported yet , you can report it at http://bugs.winehq.org
*****************************************************************************
Which is what I am doing !....
(It may be something to do with DLL files (as I needed one to get IRFANVIEW working )(but the error box doesn`t give that info ...)
thanks
Gerry
http://bugs.winehq.org/show_bug.cgi?id=23312
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |focht@gmx.net
--- Comment #1 from Anastasius Focht focht@gmx.net 2010-06-21 16:05:03 --- Hello,
the application imports all needed gdiplus API by ordinal (such "optimizations" = serious brain damage). Wine doesn't preserve the same export/ordinal order as Microsoft gdiplus hence the stack gets imbalanced when wrong gdiplus exports are called, leading to crash.
Use native gdiplus to work around the crash, e.g.: 'winetricks gdiplus'
(http://wiki.winehq.org/winetricks)
Regards
http://bugs.winehq.org/show_bug.cgi?id=23312
Vincent Povirk madewokherd@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Component|-unknown |gdiplus
--- Comment #2 from Vincent Povirk madewokherd@gmail.com 2010-06-21 16:08:35 --- Are these ordinals consistent across Microsoft OS versions?
http://bugs.winehq.org/show_bug.cgi?id=23312
--- Comment #3 from Anastasius Focht focht@gmx.net 2010-06-21 16:37:42 --- Hello,
--- quote --- Are these ordinals consistent across Microsoft OS versions? --- quote ---
well there probably exist a crapload of different gdiplus flavors (base API + hotfix ones), managed in WinSxS assembly cache. I don't know if the ordinals are stable across all the flavors.
You could run winedump on a couple of native versions (at least the major ver ones) and run some script magic to determine if the functions remain bound to same ordinals when the API got extended.
If you ask me I'd rather let such apps/vendors/devs bite the dust, it isn't really worth the trouble maintaining fixed ordinal lists for regular dlls. There are Microsoft dlls that explicitly export certain API by ordinal but these are exceptions and mostly documented. Gdiplus doesn't fall in this category.
Regards
http://bugs.winehq.org/show_bug.cgi?id=23312
--- Comment #4 from Alexandre Julliard julliard@winehq.org 2010-06-21 16:40:24 --- The ordinals are all different across versions. I agree that this sounds like a wontfix.
http://bugs.winehq.org/show_bug.cgi?id=23312
Dmitry Timoshkov dmitry@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Version|unspecified |1.2-rc4 Resolution| |WONTFIX Summary|have downloaded and |Photo! Editor crashes |installed Photo! Editor, |because of importing |Click on .exe or desktop |gdiplus by ordinal |icon, getting "Program | |Error" message box |
--- Comment #5 from Dmitry Timoshkov dmitry@codeweavers.com 2010-06-22 00:22:52 --- Marking as WONTFIX.
http://bugs.winehq.org/show_bug.cgi?id=23312
Dmitry Timoshkov dmitry@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #6 from Dmitry Timoshkov dmitry@codeweavers.com 2010-06-22 00:23:05 --- Closing.
http://bugs.winehq.org/show_bug.cgi?id=23312
--- Comment #7 from Andrew Nguyen arethusa26@gmail.com 2011-05-15 01:03:33 CDT --- I suppose http://www.winehq.org/pipermail/wine-patches/2011-May/101916.html technically fixes this bug.
http://bugs.winehq.org/show_bug.cgi?id=23312
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download Status|CLOSED |UNCONFIRMED URL| |http://files.pho.to/peditor | |inst.exe Resolution|WONTFIX |
--- Comment #8 from Anastasius Focht focht@gmx.net 2011-05-15 01:59:04 CDT --- Hello,
--- quote --- I suppose http://www.winehq.org/pipermail/wine-patches/2011-May/101916.html technically fixes this bug. --- quote ---
sure ;-) But I don't think the patch specifically targeted the app in this bug report. Maybe a more prominent candidate was found doing the same brain damage.
Regards
http://bugs.winehq.org/show_bug.cgi?id=23312
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1
--- Comment #9 from Anastasius Focht focht@gmx.net 2011-05-15 01:59:45 CDT --- Hello,
and confirming again ...
Regards
http://bugs.winehq.org/show_bug.cgi?id=23312
--- Comment #10 from Vincent Povirk madewokherd@gmail.com 2011-05-16 10:52:14 CDT --- I saw a similar problem in another app. I had completely forgotten about this bug and checked the ordinals in winxp vs win7 myself. It seems the new version in win7 added new functions with new ordinals, instead of keeping them lexically sorted. So it looks like MS is trying to preserve them for this dll.
http://bugs.winehq.org/show_bug.cgi?id=23312
Vincent Povirk madewokherd@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |madewokherd@gmail.com
http://bugs.winehq.org/show_bug.cgi?id=23312
Andrew Nguyen arethusa26@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED
--- Comment #11 from Andrew Nguyen arethusa26@gmail.com 2011-05-16 13:25:36 CDT --- Vincent's patch was committed as 73e50ba60e852831a29b9b5062d6a8578f5bb8b6, which allows the Photo! Editor application to start.
http://bugs.winehq.org/show_bug.cgi?id=23312
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #12 from Alexandre Julliard julliard@winehq.org 2011-05-27 13:38:27 CDT --- Closing bugs fixed in 1.3.21.
http://bugs.winehq.org/show_bug.cgi?id=23312
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Fixed by SHA1| |73e50ba60e852831a29b9b5062d | |6a8578f5bb8b6