diff options
Diffstat (limited to 'src/lib/libcrypto/rand/randfile.c')
-rw-r--r-- | src/lib/libcrypto/rand/randfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rand/randfile.c b/src/lib/libcrypto/rand/randfile.c index 6948a83634..72c065c48d 100644 --- a/src/lib/libcrypto/rand/randfile.c +++ b/src/lib/libcrypto/rand/randfile.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: randfile.c,v 1.41 2015/07/18 22:46:42 beck Exp $ */ | 1 | /* $OpenBSD: randfile.c,v 1.42 2015/09/10 15:56:25 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -130,7 +130,7 @@ RAND_write_file(const char *file) | |||
130 | } | 130 | } |
131 | 131 | ||
132 | fclose(out); | 132 | fclose(out); |
133 | OPENSSL_cleanse(buf, BUFSIZE); | 133 | explicit_bzero(buf, BUFSIZE); |
134 | return ret; | 134 | return ret; |
135 | } | 135 | } |
136 | 136 | ||