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