diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-07-09 16:30:55 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-07-09 16:30:55 +0000 |
commit | aab9b730e86968a9a5542c9900eaabaf02e18504 (patch) | |
tree | 0d0af909446011c39505f983ed0e2a168a1b41dd /lib/libcrypto/kdf | |
parent | 8741810d9919dacc8326efc0b14882a35c8be165 (diff) |
OPENSSL_free() -> free()
Diffstat (limited to 'lib/libcrypto/kdf')
-rw-r--r-- | lib/libcrypto/kdf/tls1_prf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/kdf/tls1_prf.c b/lib/libcrypto/kdf/tls1_prf.c index dae42b684f9..c0751b9721e 100644 --- a/lib/libcrypto/kdf/tls1_prf.c +++ b/lib/libcrypto/kdf/tls1_prf.c @@ -51,7 +51,7 @@ static void pkey_tls1_prf_cleanup(EVP_PKEY_CTX *ctx) TLS1_PRF_PKEY_CTX *kctx = ctx->data; freezero(kctx->sec, kctx->seclen); explicit_bzero(kctx->seed, kctx->seedlen); - OPENSSL_free(kctx); + free(kctx); } static int pkey_tls1_prf_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) |