[FAST486]

Don't return uninitialized variables.


svn path=/branches/ntvdm/; revision=60967
This commit is contained in:
Aleksandar Andrejevic 2013-11-12 21:55:05 +00:00
parent 2da0e38fbc
commit 677810ea95

View file

@ -167,7 +167,11 @@ Fast486RotateOperation(PFAST486_STATE State,
Count &= 0x1F;
/* If the count is zero, do nothing */
if (Count == 0) goto SetFlags;
if (Count == 0)
{
Result = Value;
goto SetFlags;
}
/* Check which operation is this */
switch (Operation)