mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[SOFT386]
Fix a bad call to RtlFillMemory. svn path=/branches/ntvdm/; revision=60618
This commit is contained in:
parent
37059f6dfc
commit
47390630ed
1 changed files with 1 additions and 1 deletions
|
@ -6135,7 +6135,7 @@ SOFT386_OPCODE_HANDLER(Soft386OpcodeStos)
|
||||||
/* Fill the memory block with the data */
|
/* Fill the memory block with the data */
|
||||||
if (DataSize == sizeof(UCHAR))
|
if (DataSize == sizeof(UCHAR))
|
||||||
{
|
{
|
||||||
RtlFillMemory(Block, State->GeneralRegs[SOFT386_REG_EAX].LowByte, sizeof(Block));
|
RtlFillMemory(Block, sizeof(Block), State->GeneralRegs[SOFT386_REG_EAX].LowByte);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue