Commit 8d71618a authored by Mark Grimes's avatar Mark Grimes

Change bzero to memset because it's compatible with windows

parent 8674cdaa
...@@ -1606,7 +1606,7 @@ struct WireHelpers { ...@@ -1606,7 +1606,7 @@ struct WireHelpers {
if (dataSize % BYTES_PER_WORD != 0 * BYTES) { if (dataSize % BYTES_PER_WORD != 0 * BYTES) {
//Zero-pad the data if it didn't use the entire last word //Zero-pad the data if it didn't use the entire last word
byte* padStart = reinterpret_cast<byte*>(ptr) + (dataSize / BYTES); byte* padStart = reinterpret_cast<byte*>(ptr) + (dataSize / BYTES);
bzero(padStart, (BYTES_PER_WORD * WORDS - (dataSize % BYTES_PER_WORD)) / BYTES); memset(padStart, 0, (BYTES_PER_WORD * WORDS - (dataSize % BYTES_PER_WORD)) / BYTES);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment