# HG changeset patch # User Matt Johnston # Date 1329836205 -28800 # Node ID 76e780c74a5e8028bbafa39ea546a3214445f31b # Parent 234cf769bcb3352e466ed84d7975a9233e98ef65 - Burn buffers to 0x00 instead diff -r 234cf769bcb3 -r 76e780c74a5e dbutil.c --- 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; } }