https://bugs.winehq.org/show_bug.cgi?id=49556
Austin English austinenglish@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Keywords| |download, regression Summary|0024:err:seh:raise_exceptio |filever.exe /v crashes when |n Unhandled exception code |opening Metatrader 5's |c0000005 flags 0 addr |terminal64.exe |0x7bc88e20 |
--- Comment #2 from Austin English austinenglish@gmail.com --- I can reproduce in wine-development (without docker), but for me, it was introduced between 5.2/5.3, by: 55dc4fce990f9edd3c216e5dff15a7918308b03f is the first bad commit commit 55dc4fce990f9edd3c216e5dff15a7918308b03f Author: Alexandre Julliard julliard@winehq.org Date: Thu Feb 20 16:02:36 2020 +0100
kernelbase: Use external NLS files for Unicode composition.
Signed-off-by: Alexandre Julliard julliard@winehq.org
dlls/kernelbase/locale.c | 128 ++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 115 insertions(+), 13 deletions(-) bisect run success
git bisect script: #!/bin/bash export WINE=~/wine-git/wine
cd /tmp/tmp.vDNMV0VUId/MetaTrader\ 5/ || exit 125 "$WINE" filever /v filever.exe terminal64.exe 2>&1 | grep 'starting debugger' ret="$?"
case "$ret" in 0) echo "crashed"; exit 1;; 1) echo "no crash"; exit 0;; *) echo "unknown ret $ret" ; exit 125;; esac
can you try wine-development-5.9 and see if it crashes?