Skip to content
Snippets Groups Projects
Commit aaa72ddb authored by Matt Johnston's avatar Matt Johnston
Browse files

- Burn buffers to 0x00 instead

parent bcf3a3ab
Branches
Tags
No related merge requests found
...@@ -830,7 +830,7 @@ void m_burn(void *data, unsigned int len) { ...@@ -830,7 +830,7 @@ void m_burn(void *data, unsigned int len) {
if (data == NULL) if (data == NULL)
return; return;
while (len--) { while (len--) {
*p++ = 0x66; *p++ = 0x0;
} }
} }
......
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