I am trying to use the language-learning program "Before You Know It
3.5 Lite" on wine.  This same executable works under native Windows,
but with wine, it consistently aborts when a word list is selected
(this is a mandatory action as the program begins).  The results of
running "WINEDEBUG=err+all wine <PROGRAMNAME>" is given here:
------------------------------------------------------------------------------------------------------------------------------------------------------------
wine: Unhandled page fault on read access to 0x00000000 at address
0x43199a (thread 0009), starting debugger...
Modules:
Cannot get info on module while no process is loaded
Threads:
process  tid      prio (all id:s are in hex)
0000000a
        0000000c    0
        0000000b    0
00000008 (D) (null)
        00000010    0
        0000000e    0
        0000000d    0
        00000009    0
------------------------------------------------------------------------------------------------------------------------------------------------------------
Can anyone help me figure out what's going on, or what I can do to
prevent this from happening? Many thanks in advance!
paul.moyer@gmail.com wrote:> I am trying to use the language-learning program "Before You Know It > 3.5 Lite" on wine. This same executable works under native Windows, > but with wine, it consistently aborts when a word list is selected > (this is a mandatory action as the program begins). The results of > running "WINEDEBUG=err+all wine <PROGRAMNAME>" is given here:Error messages are enabled by default, no need to specify that.> ------------------------------------------------------------------------------------------------------------------------------------------------------------ > wine: Unhandled page fault on read access to 0x00000000 at address > 0x43199a (thread 0009), starting debugger... > Modules: > Cannot get info on module while no process is loaded > Threads: > process tid prio (all id:s are in hex) > 0000000a > 0000000c 0 > 0000000b 0 > 00000008 (D) (null) > 00000010 0 > 0000000e 0 > 0000000d 0 > 00000009 0We need at least a backtrace. Do the following: $ wine winedbg program.exe Type 'cont' After the crash, type 'bt' Post the output Daniel