mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
ntdll: Use the standard exception handling for vm86 GP faults too.
This commit is contained in:
parent
6d1605a6a4
commit
b5953831c3
1 changed files with 1 additions and 2 deletions
|
@ -1464,8 +1464,7 @@ void __wine_enter_vm86( CONTEXT *context )
|
|||
{
|
||||
case VM86_UNKNOWN: /* unhandled GP fault - IO-instruction or similar */
|
||||
rec.ExceptionCode = EXCEPTION_PRIV_INSTRUCTION;
|
||||
raise_segv_exception( &rec, context );
|
||||
continue;
|
||||
break;
|
||||
case VM86_TRAP: /* return due to DOS-debugger request */
|
||||
switch(VM86_ARG(res))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue