[Bug 21933] New: Unhandled page fault on read access to 0x00000000
http://bugs.winehq.org/show_bug.cgi?id=21933 Summary: Unhandled page fault on read access to 0x00000000 Product: Wine Version: 1.1.39 Platform: x86-64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: -unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: natron(a)gmx.ch Created an attachment (id=26623) --> (http://bugs.winehq.org/attachment.cgi?id=26623) log of the exception output During startup, the application crashes with the error attached. System ist an Ubuntu 9.10 64bit -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 --- Comment #1 from Austin English <austinenglish(a)gmail.com> 2010-03-05 10:48:09 --- What program is this? Is there a download/demo available online? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 --- Comment #2 from Natron <natron(a)gmx.ch> 2010-03-05 11:34:10 --- It's a proprietary application and as far as i know, I'm not allowed to distribute it. I know it's bad for debugging. Can I provide you with any information that would help debugging? Else I will have a look myself as soon as I have time for it. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 --- Comment #3 from Juan Lang <juan_lang(a)yahoo.com> 2010-03-05 11:49:44 --- Could you at least say the name of the application? Also, please attach the entire console log from running it, rather than just the backtrace: http://wiki.winehq.org/FAQ#get_log -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 Vitaliy Margolen <vitaliy(a)kievinfo.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Unhandled page fault on |Proprietary application |read access to 0x00000000 |crashes during startup --- Comment #4 from Vitaliy Margolen <vitaliy(a)kievinfo.com> 2010-03-05 19:12:17 --- Please install Wine debug symbols. Attach compressed "winelog.txt" from this command: WINEDEBUG=+relay,+tid,+seh wine program.exe >> winelog.txt 2>&1 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 --- Comment #5 from Natron <natron(a)gmx.ch> 2010-03-06 02:46:54 --- Created an attachment (id=26632) --> (http://bugs.winehq.org/attachment.cgi?id=26632) WINEDEBUG=+relay,+tid,+seh with debug symbols Here is the log. Didn't knew it was that easy to get the debug symbols -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 --- Comment #6 from Vitaliy Margolen <vitaliy(a)kievinfo.com> 2010-03-06 12:30:06 --- Smells like memory corruption to me: 0009:Call ntdll.RtlAllocateHeap(00426000,00000000,00000010) ret=0040987e 0009:Ret ntdll.RtlAllocateHeap() retval=00447668 ret=0040987e ... 0009:Call ntdll.RtlAllocateHeap(00426000,00000000,00000010) ret=0040987e 0009:trace:seh:raise_exception code=c0000005 flags=0 addr=0x7bc48457 ip=7bc48457 tid=0009 -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 --- Comment #7 from Natron <natron(a)gmx.ch> 2010-03-08 02:07:35 --- If it was a memory corruption caused by the application, shouldn't it also happen on Windows? There it is working for 32bit and 64bit. Unfortunately, I don't have the source, so I can't check it there. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 --- Comment #8 from Jeff Zaroyko <jeffz(a)jeffz.name> 2010-03-08 04:47:48 --- (In reply to comment #7)
If it was a memory corruption caused by the application, shouldn't it also happen on Windows? There it is working for 32bit and 64bit. Unfortunately, I don't have the source, so I can't check it there.
No, because memory corruption is "undefined behavior". Underlying semantics for Wine and Windows differ in some places, so that if your program does corrupt the heap it is possible that it does it silently on Windows. If you wanted to test this theory, you can use something like rational purify on Windows. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 --- Comment #9 from Vitaliy Margolen <vitaliy(a)kievinfo.com> 2010-03-08 09:17:01 --- Try setting this registry value: [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager] GlobalFlag=0x10 Or even 0x30. And see if it blows up sooner. BTW you can do the same on Windows. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 --- Comment #10 from Natron <natron(a)gmx.ch> 2010-03-09 14:44:00 --- I tried the GlobalFlag with 0x30 under wine. The logfile has exactly the same size. I also tried to use purify but was not able to run any application with it. May be this is because of Windows 7, had to enable compatibility mode to install. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 Anastasius Focht <focht(a)gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |focht(a)gmx.net --- Comment #11 from Anastasius Focht <focht(a)gmx.net> 2010-03-09 14:56:07 --- Hello, add +heap debug channel, this will automagically enable all heap checking, no registry changes needed. WINEDEBUG=+tid,+seh,+relay,+heap wine foo.exe >>log.txt 2>&1 Regards -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 --- Comment #12 from Natron <natron(a)gmx.ch> 2010-03-09 15:21:01 --- Created an attachment (id=26722) --> (http://bugs.winehq.org/attachment.cgi?id=26722) WINEDEBUG=+relay,+tid,+seh,+heap Log with "+head" added -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 Francisco <infoerudito(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |infoerudito(a)gmail.com --- Comment #13 from Francisco <infoerudito(a)gmail.com> 2010-12-27 10:48:15 CST --- fixme:exec:SHELL_execute flags ignored: 0x00000100 wine: cannot find L"C:\\windows\\system32\\wtlibrary.exe" ebeldur(a)ebeldur-desktop:~$ fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=3): stub fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=1): stub fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=0): stub fixme:appbar:handle_appbarmessage SHAppBarMessage(ABM_GETAUTOHIDEBAR, hwnd=(nil), edge=2): stub wine: Unhandled page fault on read access to 0x00000000 at address 0x78556ff2 (thread 001c), starting debugger... Esto es lo que me aparece al intentar arrancar en el equipo. La versión 2009 funciona perfectamente. Uso Ubuntu 10.04 64 bits. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 Frédéric Delanoy <frederic.delanoy(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |frederic.delanoy(a)gmail.com --- Comment #14 from Frédéric Delanoy <frederic.delanoy(a)gmail.com> 2013-05-15 01:44:43 CDT --- Can you please retry with recent wine (1.5.30 or later)? -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 Natron <natron(a)gmx.ch> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |ABANDONED --- Comment #15 from Natron <natron(a)gmx.ch> 2013-05-20 13:47:32 CDT --- I just tried it with wine 1.5.30. The problem still persists but as the software is obsolete now, closing this bug is fine for me. Thanks for the support. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21933 Frédéric Delanoy <frederic.delanoy(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #16 from Frédéric Delanoy <frederic.delanoy(a)gmail.com> 2013-05-20 16:23:11 CDT --- Closing -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
participants (1)
-
wine-bugs@winehq.org