diff dbutil.c @ 655:76e780c74a5e

- Burn buffers to 0x00 instead
author Matt Johnston <matt@ucc.asn.au>
date Tue, 21 Feb 2012 22:56:45 +0800
parents 452bcf810e44
children 16af1decaf4c
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;
 	}
 }