changeset 655:76e780c74a5e

- Burn buffers to 0x00 instead
author Matt Johnston <matt@ucc.asn.au>
date Tue, 21 Feb 2012 22:56:45 +0800
parents 234cf769bcb3
children 67fbba2c2a85
files dbutil.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/dbutil.c	Fri Feb 10 19:09:52 2012 +0800
+++ b/dbutil.c	Tue Feb 21 22:56:45 2012 +0800
@@ -830,7 +830,7 @@
 	if (data == NULL)
 		return;
 	while (len--) {
-		*p++ = 0x66;
+		*p++ = 0x0;
 	}
 }