diff options
author | Matt Johnston <matt@ucc.asn.au> | 2012-02-21 22:56:45 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2012-02-21 22:56:45 +0800 |
commit | aaa72ddbfc20bcd1a5ddd8c06db1e28cd5dfebe3 (patch) | |
tree | 7858c6238e884dfeaf6cc03e1496673c89015d87 /dbutil.c | |
parent | bcf3a3ab932366ab91d1c2dbf28d7fef00702a8f (diff) |
- Burn buffers to 0x00 instead
Diffstat (limited to 'dbutil.c')
-rw-r--r-- | dbutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -830,7 +830,7 @@ void m_burn(void *data, unsigned int len) { if (data == NULL) return; while (len--) { - *p++ = 0x66; + *p++ = 0x0; } } |