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