- Burn buffers to 0x00 instead

This commit is contained in:
Matt Johnston 2012-02-21 22:56:45 +08:00
parent bcf3a3ab93
commit aaa72ddbfc

View File

@ -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;
} }
} }