aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/md5.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cipher/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/md5.c b/cipher/md5.c
index ca605b6fd..1d1f76134 100644
--- a/cipher/md5.c
+++ b/cipher/md5.c
@@ -78,7 +78,7 @@ burn_stack (int bytes)
{
char buf[128];
- memset (buf, 0, sizeof buf);
+ wipememory(buf,sizeof buf);
bytes -= sizeof buf;
if (bytes > 0)
burn_stack (bytes);