summaryrefslogtreecommitdiffhomepage
path: root/dbutil.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2012-02-21 22:56:45 +0800
committerMatt Johnston <matt@ucc.asn.au>2012-02-21 22:56:45 +0800
commitaaa72ddbfc20bcd1a5ddd8c06db1e28cd5dfebe3 (patch)
tree7858c6238e884dfeaf6cc03e1496673c89015d87 /dbutil.c
parentbcf3a3ab932366ab91d1c2dbf28d7fef00702a8f (diff)
- Burn buffers to 0x00 instead
Diffstat (limited to 'dbutil.c')
-rw-r--r--dbutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbutil.c b/dbutil.c
index 8823ab6..b9d7f47 100644
--- a/dbutil.c
+++ b/dbutil.c
@@ -830,7 +830,7 @@ void m_burn(void *data, unsigned int len) {
if (data == NULL)
return;
while (len--) {
- *p++ = 0x66;
+ *p++ = 0x0;
}
}