Fixed xeRtlFillMemoryUlong so it swaps the pattern back to native endianness.

This commit is contained in:
gibbed 2013-10-16 18:58:50 -07:00
parent 309d1621e5
commit 46b42528fd
1 changed files with 7 additions and 2 deletions

View File

@ -138,8 +138,13 @@ void xeRtlFillMemoryUlong(uint32_t destination_ptr, uint32_t length,
// TODO(benvanik): ensure byte order is correct - we're writing back the // TODO(benvanik): ensure byte order is correct - we're writing back the
// swapped arg value. // swapped arg value.
for (uint32_t n = 0; n < length / 4; n++, p++) { uint32_t count = length >> 2;
*p = pattern; uint32_t native_pattern = XESWAP32BE(pattern);
// TODO: unroll loop?
for (uint32_t n = 0; n < count; n++, p++) {
*p = native_pattern;
} }
} }