diff options
Diffstat (limited to 'cipher/tiger.c')
-rw-r--r-- | cipher/tiger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/tiger.c b/cipher/tiger.c index 1bb3375ed..54cafe578 100644 --- a/cipher/tiger.c +++ b/cipher/tiger.c @@ -635,7 +635,7 @@ burn_stack (int bytes) { char buf[256]; - memset (buf, 0, sizeof buf); + wipememory(buf,sizeof buf); bytes -= sizeof buf; if (bytes > 0) burn_stack (bytes); |