mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
[FAST486]
Don't return uninitialized variables. svn path=/branches/ntvdm/; revision=60967
This commit is contained in:
parent
2da0e38fbc
commit
677810ea95
1 changed files with 5 additions and 1 deletions
|
@ -167,7 +167,11 @@ Fast486RotateOperation(PFAST486_STATE State,
|
||||||
Count &= 0x1F;
|
Count &= 0x1F;
|
||||||
|
|
||||||
/* If the count is zero, do nothing */
|
/* If the count is zero, do nothing */
|
||||||
if (Count == 0) goto SetFlags;
|
if (Count == 0)
|
||||||
|
{
|
||||||
|
Result = Value;
|
||||||
|
goto SetFlags;
|
||||||
|
}
|
||||||
|
|
||||||
/* Check which operation is this */
|
/* Check which operation is this */
|
||||||
switch (Operation)
|
switch (Operation)
|
||||||
|
|
Loading…
Reference in a new issue