Hello there, just subscribed to this list via google. I am trying to run a legacy Applikation under wine and receive the following bav@saturn:~/bav_tests$ wine Bav.exe "Z:\home\bav\bav_tests\data\BAVDataRK.xml" 2 fixme:win:WIN_CreateWindowEx Parent is HWND_MESSAGE fixme:reg:RegOpenUserClassesRoot (0x78, 0x0, 0x2000000, 0x55d7ba24) semi-stub fixme:actctx:FindActCtxSectionGuid stub! wine: Unhandled exception 0x0eedfade at address 0x0000:0x55a00b60 (thread 0009), starting debugger... WineDbg starting on pid 0x8 First chance exception: 0xc0000025 in 32-bit code (0x5570558c). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:005b EIP:5570558c ESP:55d7b884 EBP:55d7b8e8 EFLAGS:00000282( - 00 - -IS1) EAX:55d7b890 EBX:5574c63c ECX:558b0020 EDX:55d7bc6c ESI:55d7bc6c EDI:55d7b8f4 Stack dump: 0x55d7b884: 00000001 55a71594 00000001 c0000025 0x55d7b894: 00000001 55d7bc6c 00000000 00000000 0x55d7b8a4: 00000409 55a7486c 55a7487c 5574c63c 0x55d7b8b4: 00000004 55a71594 55d7b92c 5571f1f9 0x55d7b8c4: 00000000 00000001 00000002 55d7b91c 0x55d7b8d4: 00000407 00000001 00000407 55705540 fixme:ntdll:RtlNtStatusToDosErrorNoTeb no mapping for c0000119 Backtrace: =>1 0x5570558c __regs_RtlRaiseException+0x4c in ntdll (0x5570558c) Can somebody explan to me how to handle this error. Is it a dll problem or do I have any possibility tr track down the problem ? Kind regards Michael
michael.bierenfeld@web.de wrote:> I am trying to run a legacy Applikation under wine and receive the following > > bav@saturn:~/bav_tests$ wine Bav.exe "Z:\home\bav\bav_tests\data\BAVDataRK.xml" 2 > ... > wine: Unhandled exception 0x0eedfade at address 0x0000:0x55a00b60 (thread 0009), starting debugger... > ... > Backtrace: > =>1 0x5570558c __regs_RtlRaiseException+0x4c in ntdll (0x5570558c) > > Can somebody explan to me how to handle this error. Is it a dll problem > or do I have any possibility tr track down the problem ?Is there more to that backtrace? What version of wine are you running, where did you get it? What Linux distribution are you using? Also, it looks like you're using a stripped version of wine, as there are no line numbers in the backtrace. Can you build a copy from source (that way you get debugging info)? To learn more about what triggered the problem, you can run your app with WINEDEBUG=+relay wine Bav.exe "Z:\home\bav\bav_tests\data\BAVDataRK.xml" 2 > log.txt 2>&1 and look at the last part of log.txt right before the Unhandled exception (you might have to compress the log and send it to a wine expert, though). - Dan