mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[FAST486]
Don't return uninitialized variables. svn path=/branches/ntvdm/; revision=60967
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user