mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 08:53:02 +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);
|
Size);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
else return FALSE;
|
else
|
||||||
|
{
|
||||||
|
State->PrefetchValid = FALSE;
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue