mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[SOFT386]
Fix a bad call to RtlFillMemory. svn path=/branches/ntvdm/; revision=60618
This commit is contained in:
@@ -6135,7 +6135,7 @@ SOFT386_OPCODE_HANDLER(Soft386OpcodeStos)
|
||||
/* Fill the memory block with the data */
|
||||
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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user