http://bugs.winehq.org/show_bug.cgi?id=11784
--- Comment #1 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-04-02 15:19:43 --- Created an attachment (id=11810) --> (http://bugs.winehq.org/attachment.cgi?id=11810) test case
Just a preliminary note : this bug is also present in AutoCad2008Trial and 3dsMax2009Trial.
It looks like the problem is:
001e:Call user32.LoadImageW(00000000,036b567c L"C:\windows\temp\_AIa.tmp\SetupRes\InfoLink\Images\Failed.gif",0000000 0,00000000,00000000,00000010) ret=0034ac71 001e:err:cursor:DIB_GetBitmapInfo (8388608): unknown/wrong size for header
It tries to load a gif-file and then wine crashes. I created very simple test-case to reproduce this crash: just unzip the attached archive in ~/.wine/drive_c\windows\temp (only there), and run the test. You'll see the same crash. The test is just the simplest win32-app you can think if, i only added the following:
WndClsEx.hIcon = (HICON)(LoadImage(0, "c:\windows\temp\Failed.gif", IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE));
On windows this test doesn't crash, but in wine it does. I'm not exactly sure now where to fix this bug :(. Any help appreciated.