mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[FAST486]
Update the CPL when performing an interrupt. svn path=/trunk/; revision=65300
This commit is contained in:
parent
5b5d036b35
commit
3e9aa4c71d
1 changed files with 4 additions and 1 deletions
|
@ -310,8 +310,11 @@ Fast486InterruptInternal(PFAST486_STATE State,
|
|||
goto Cleanup;
|
||||
}
|
||||
|
||||
/* Switch to the new privilege level */
|
||||
State->Cpl = GET_SEGMENT_RPL(SegmentSelector);
|
||||
|
||||
/* Check the new (higher) privilege level */
|
||||
switch (GET_SEGMENT_RPL(SegmentSelector))
|
||||
switch (State->Cpl)
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue