aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ecdsa/ecs_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ecdsa/ecs_lib.c')
-rw-r--r--crypto/ecdsa/ecs_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ecdsa/ecs_lib.c b/crypto/ecdsa/ecs_lib.c
index 8eb1c30865..9465dee625 100644
--- a/crypto/ecdsa/ecs_lib.c
+++ b/crypto/ecdsa/ecs_lib.c
@@ -170,7 +170,7 @@ void ECDSA_DATA_free(ECDSA_DATA *r)
CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, r, &r->ex_data);
- memset((void *)r, 0x0, sizeof(ECDSA_DATA));
+ OPENSSL_cleanse((void *)r, sizeof(ECDSA_DATA));
OPENSSL_free(r);
}