mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 10:01:43 +00:00
[FAST486]
Don't leave the prefetch cache in a possibly invalid state if Fast486ReadLinearMemory returns FALSE. svn path=/trunk/; revision=65037
This commit is contained in:
parent
bc64e37fd1
commit
949c27964d
1 changed files with 5 additions and 1 deletions
|
@ -121,7 +121,11 @@ Fast486ReadMemory(PFAST486_STATE State,
|
|||
Size);
|
||||
return TRUE;
|
||||
}
|
||||
else return FALSE;
|
||||
else
|
||||
{
|
||||
State->PrefetchValid = FALSE;
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
else
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue