From e61c05c35cec7ce279f1f8b2199a15e3f184518d Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Mon, 24 Feb 2014 03:53:02 +0000 Subject: [PATCH] [FAST486] Add missing returns after calls to Fast486Exception. svn path=/branches/ntvdm/; revision=62316 --- lib/fast486/opgroups.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/fast486/opgroups.c b/lib/fast486/opgroups.c index 0e560d5e151..264fa66ba2c 100644 --- a/lib/fast486/opgroups.c +++ b/lib/fast486/opgroups.c @@ -1728,6 +1728,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0F00) || State->Flags.Vm) { Fast486Exception(State, FAST486_EXCEPTION_UD); + return FALSE; } return Fast486WriteModrmWordOperands(State, @@ -1744,6 +1745,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0F00) || State->Flags.Vm) { Fast486Exception(State, FAST486_EXCEPTION_UD); + return FALSE; } return Fast486WriteModrmWordOperands(State, @@ -1763,6 +1765,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0F00) || State->Flags.Vm) { Fast486Exception(State, FAST486_EXCEPTION_UD); + return FALSE; } /* This is a privileged instruction */ @@ -1838,6 +1841,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0F00) || State->Flags.Vm) { Fast486Exception(State, FAST486_EXCEPTION_UD); + return FALSE; } /* This is a privileged instruction */ @@ -1915,6 +1919,7 @@ FAST486_OPCODE_HANDLER(Fast486OpcodeGroup0F00) || State->Flags.Vm) { Fast486Exception(State, FAST486_EXCEPTION_UD); + return FALSE; } /* This is a privileged instruction */ -- 2.17.1