http://bugs.winehq.org/show_bug.cgi?id=10323
Summary: Can not get Hellgate London Demo to install Product: Wine Version: CVS/GIT Platform: PC-x86-64 OS/Version: Linux Status: UNCONFIRMED Severity: blocker Priority: P2 Component: wine-kernel AssignedTo: wine-bugs@winehq.org ReportedBy: SirTwist@web.de
Created an attachment (id=8981) --> (http://bugs.winehq.org/attachment.cgi?id=8981) +tid,+seh,+relay hellgateLondonDemoSetup log
After clicking Standard installation it crashes look attached log file. I used the following version (Git checkout) wine-0.9.48-196-gbeab2c1
http://bugs.winehq.org/show_bug.cgi?id=10323
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Severity|blocker |normal Keywords| |download, Installer
--- Comment #1 from Austin English austinenglish@gmail.com 2007-11-05 21:34:43 --- Not a blocker.
http://bugs.winehq.org/show_bug.cgi?id=10323
--- Comment #2 from Juan Lang juan_lang@yahoo.com 2007-11-06 10:52:14 --- The crash is at the end of the log:
000e:Call ntdll.RtlDecodePointer(ffedaed8) ret=10021ee7 000e:Ret ntdll.RtlDecodePointer() retval=00000000 ret=10021ee7 000e:Call KERNEL32.IsDebuggerPresent() ret=1001b1b2 000e:Ret KERNEL32.IsDebuggerPresent() retval=00000000 ret=1001b1b2 000e:Call KERNEL32.SetUnhandledExceptionFilter(00000000) ret=1001b1bc 000e:Ret KERNEL32.SetUnhandledExceptionFilter() retval=004280a2 ret=1001b1bc 000e:Call KERNEL32.UnhandledExceptionFilter(7cda3b80) ret=1001b1c6 wine: Unhandled exception 0xc000000d at address 0x7cda0023:0x1001c7f7 (thread 000e), starting debugger...
No idea why it's using RtlEncodePointer/RtlDecodePointer. Nevertheless, the value ffedaed8 is the encoded version of NULL in this run:
000e:Call ntdll.RtlEncodePointer(00000000) ret=10021e70 000e:Ret ntdll.RtlEncodePointer() retval=ffedaed8 ret=10021e70
Just before this encoding, it does a GetProcAddress for some Fls* functions in kernel32:
000e:Call KERNEL32.GetModuleHandleA(10039d9c "KERNEL32.DLL") ret=1002224d 000e:Ret KERNEL32.GetModuleHandleA() retval=7ede0000 ret=1002224d 000e:Call KERNEL32.GetProcAddress(7ede0000,10039ddc "FlsAlloc") ret=1002226b 000e:Ret KERNEL32.GetProcAddress() retval=00000000 ret=1002226b 000e:Call KERNEL32.GetProcAddress(7ede0000,10039dd0 "FlsGetValue") ret=10022278 000e:Ret KERNEL32.GetProcAddress() retval=00000000 ret=10022278 000e:Call KERNEL32.GetProcAddress(7ede0000,10039dc4 "FlsSetValue") ret=10022285 000e:Ret KERNEL32.GetProcAddress() retval=00000000 ret=10022285 000e:Call KERNEL32.GetProcAddress(7ede0000,10039dbc "FlsFree") ret=10022292 000e:Ret KERNEL32.GetProcAddress() retval=00000000 ret=10022292
It could be one of those that it's trying to use later on the program.
http://bugs.winehq.org/show_bug.cgi?id=10323
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |focht@gmx.net
--- Comment #3 from Anastasius Focht focht@gmx.net 2007-11-06 11:26:24 --- Hello,
--- snip --- 000e:Call ntdll.RtlDecodePointer(ffedaed8) ret=10021ee7 000e:Ret ntdll.RtlDecodePointer() retval=00000000 ret=10021ee7 000e:Call KERNEL32.IsDebuggerPresent() ret=1001b1b2 000e:Ret KERNEL32.IsDebuggerPresent() retval=00000000 ret=1001b1b2 000e:Call KERNEL32.SetUnhandledExceptionFilter(00000000) ret=1001b1bc 000e:Ret KERNEL32.SetUnhandledExceptionFilter() retval=004280a2 ret=1001b1bc 000e:Call KERNEL32.UnhandledExceptionFilter(7cda3b80) ret=1001b1c6 wine: Unhandled exception 0xc000000d at address 0x7cda0023:0x1001c7f7 (thread 000e), starting debugger... 000e:trace:seh:start_debugger Starting debugger "winedbg --auto 8 172" 000e:Ret KERNEL32.UnhandledExceptionFilter() retval=00000000 ret=1001b1c6 --- snip ---
SetUnhandledExceptionFilter(NULL); UnhandledExceptionFilter( &exception_pointers);
This removes any currently installed (app) exception filter and forces the OS default exception handler. Pretty standard.
Now walking back one can see following trace:
--- snip --- 000e:Call KERNEL32.GetFileAttributesW(7cda42c4 L"") ret=100032b7 000e:Ret KERNEL32.GetFileAttributesW() retval=ffffffff ret=100032b7 000e:Call KERNEL32.GetLastError() ret=10022030 000e:Ret KERNEL32.GetLastError() retval=00000003 ret=10022030 --- snip ---
This is suspicious. Searching further back with the buffer pointer reveals this:
--- snip --- 000e:Call user32.GetDlgItemTextW(00010050,000003f9,7cda52c4,00000400) ret=10003253 000e:Call window proc 0x7eb28520 (hwnd=0x10052,msg=WM_GETTEXT,wp=00000400,lp=7cda52c4) 000e:Ret window proc 0x7eb28520 (hwnd=0x10052,msg=WM_GETTEXT,wp=00000400,lp=7cda52c4) retval=00000000 000e:Ret user32.GetDlgItemTextW() retval=00000000 ret=10003253 000e:Call KERNEL32.GetFullPathNameW(7cda52c4 L"",00000400,7cda42c4,00000000) ret=1000326f 000e:Ret KERNEL32.GetFullPathNameW() retval=00000000 ret=1000326f --- snip ---
The path/filename seems to be missing in static/edit control... Maybe +msi might help, this is probably installer bug (some value did not get filled in)...
Regards
http://bugs.winehq.org/show_bug.cgi?id=10323
--- Comment #4 from Simon SirTwist@web.de 2007-11-06 13:10:22 --- Created an attachment (id=9000) --> (http://bugs.winehq.org/attachment.cgi?id=9000) +msi hellgateLondonSetupDemoMSI.log
ok this time just with wine-0.9.48 because git update would take more then a hour if you need the one from git please let me know.
http://bugs.winehq.org/show_bug.cgi?id=10323
Thorsten Werner ThorstenWerner@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |ThorstenWerner@gmx.net
--- Comment #5 from Thorsten Werner ThorstenWerner@gmx.net 2007-11-26 14:05:46 --- Still present in wine 0.9.49
http://bugs.winehq.org/show_bug.cgi?id=10323
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- URL| |http://www.gamershell.com/do | |wnload_21548.shtml
http://bugs.winehq.org/show_bug.cgi?id=10323
scguy318 nodisgod@yahoo.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |nodisgod@yahoo.com
--- Comment #6 from scguy318 nodisgod@yahoo.com 2008-05-22 21:22:42 --- With current Git (wine-1.0-rc1-182-g9f76085) the Hellgate: London demo linked in URL installs completely and without errors, so this seems to be fixed.
http://bugs.winehq.org/show_bug.cgi?id=10323
Louis Lenders xerox_xerox2000@yahoo.co.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |xerox_xerox2000@yahoo.co.uk Status|UNCONFIRMED |RESOLVED Resolution| |FIXED
--- Comment #7 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2008-05-23 01:18:32 --- installs fine for me too. So i guess it's fixed. Please reopen if you stilll run into trouble,
http://bugs.winehq.org/show_bug.cgi?id=10323
Alexandre Julliard julliard@winehq.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED
--- Comment #8 from Alexandre Julliard julliard@winehq.org 2008-05-23 10:37:59 --- Closing bugs fixed in 1.0-rc2.
http://bugs.winehq.org/show_bug.cgi?id=10323
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Version|CVS/GIT |unspecified
http://bugs.winehq.org/show_bug.cgi?id=10323
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- Version|unspecified |0.9.48.