Commit 013d0880 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Stop winelib programs on fault instead of endless faultlooping.

parent b199b195
......@@ -282,6 +282,10 @@ static HANDLER_DEF(SIGNAL_fault)
if (fnWINE_Debugger)
fnWINE_Debugger( signal, HANDLER_CONTEXT );
else {
MSG("stopping pid %d due to unhandled %s.\n",getpid(),fault);
kill(getpid(),SIGSTOP);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment