aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/sha1.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cipher/sha1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/sha1.c b/cipher/sha1.c
index 06ca2532b..149c4c170 100644
--- a/cipher/sha1.c
+++ b/cipher/sha1.c
@@ -54,7 +54,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);