Author: aandrejevic Date: Mon Feb 24 03:53:02 2014 New Revision: 62316
URL: http://svn.reactos.org/svn/reactos?rev=62316&view=rev Log: [FAST486] Add missing returns after calls to Fast486Exception.
Modified: branches/ntvdm/lib/fast486/opgroups.c
Modified: branches/ntvdm/lib/fast486/opgroups.c URL: http://svn.reactos.org/svn/reactos/branches/ntvdm/lib/fast486/opgroups.c?rev... ============================================================================== --- branches/ntvdm/lib/fast486/opgroups.c [iso-8859-1] (original) +++ branches/ntvdm/lib/fast486/opgroups.c [iso-8859-1] Mon Feb 24 03:53:02 2014 @@ -1728,6 +1728,7 @@ || State->Flags.Vm) { Fast486Exception(State, FAST486_EXCEPTION_UD); + return FALSE; }
return Fast486WriteModrmWordOperands(State, @@ -1744,6 +1745,7 @@ || State->Flags.Vm) { Fast486Exception(State, FAST486_EXCEPTION_UD); + return FALSE; }
return Fast486WriteModrmWordOperands(State, @@ -1763,6 +1765,7 @@ || State->Flags.Vm) { Fast486Exception(State, FAST486_EXCEPTION_UD); + return FALSE; }
/* This is a privileged instruction */ @@ -1838,6 +1841,7 @@ || State->Flags.Vm) { Fast486Exception(State, FAST486_EXCEPTION_UD); + return FALSE; }
/* This is a privileged instruction */ @@ -1915,6 +1919,7 @@ || State->Flags.Vm) { Fast486Exception(State, FAST486_EXCEPTION_UD); + return FALSE; }
/* This is a privileged instruction */