summaryrefslogtreecommitdiffhomepage
path: root/dbutil.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2005-01-02 17:08:27 +0000
committerMatt Johnston <matt@ucc.asn.au>2005-01-02 17:08:27 +0000
commitb5bd8591e7bc35980370ffa5dbe74d9b137e75c7 (patch)
tree9c2aa4c8986d7bc729455cfb8275c28b58ccad78 /dbutil.c
parente6c957caaa0ca262528adb282357efcaef8b25b1 (diff)
0.44 release changes
--HG-- extra : convert_revision : 47d6b5589a4eaf707ed1c3685d9ef49306af18d8
Diffstat (limited to 'dbutil.c')
-rw-r--r--dbutil.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/dbutil.c b/dbutil.c
index ce43933..c77386f 100644
--- a/dbutil.c
+++ b/dbutil.c
@@ -603,6 +603,8 @@ void * m_realloc(void* ptr, size_t size) {
/* Clear the data, based on the method in David Wheeler's
* "Secure Programming for Linux and Unix HOWTO" */
+/* Beware of calling this from within dbutil.c - things might get
+ * optimised away */
void m_burn(void *data, unsigned int len) {
volatile char *p = data;