mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[FAST486]
In real mode, the value in the IVT is a far pointer, not an IDT entry. Fix the case when MemReadCallback is NULL. svn path=/branches/ntvdm/; revision=60813
This commit is contained in:
parent
39a527a21e
commit
1c12c6fe0d
1 changed files with 1 additions and 1 deletions
|
@ -430,7 +430,7 @@ Fast486GetIntVector(PFAST486_STATE State,
|
|||
}
|
||||
else
|
||||
{
|
||||
RtlMoveMemory(IdtEntry,
|
||||
RtlMoveMemory(&FarPointer,
|
||||
(PVOID)(State->Idtr.Address
|
||||
+ Number * sizeof(FarPointer)),
|
||||
sizeof(FarPointer));
|
||||
|
|
Loading…
Reference in a new issue