http://bugs.winehq.org/show_bug.cgi?id=3623
------- Additional Comments From saulius.krasuckas@elst.vtu.lt 2005-20-10 02:01 ------- IMHO "actual crash output" is output you get with WINEDEBUG unset. And to get XX lines _B_efore seh lines (plus YY lines _A_fter it), while seeing all the output, you may find usefull these commands:
$ wine ... 2>&1 | tee output.log # directs output both to file and terminal $ grep -BXX -AYY ':seh:' output.log # matches seh lines
If you would like to _m_atch only the first time, add grep option "-m1". HTH.