diff options
author | tb <> | 2024-07-09 16:30:54 +0000 |
---|---|---|
committer | tb <> | 2024-07-09 16:30:54 +0000 |
commit | 3a77c227560cdf9d31cc44216689a0873ea80cd9 (patch) | |
tree | 8582102e017b3a9689bc635820885465a1da021e | |
parent | f80babe7ba72c48d05a637f4a40cd5cb5b3316c7 (diff) | |
download | openbsd-3a77c227560cdf9d31cc44216689a0873ea80cd9.tar.gz openbsd-3a77c227560cdf9d31cc44216689a0873ea80cd9.tar.bz2 openbsd-3a77c227560cdf9d31cc44216689a0873ea80cd9.zip |
OPENSSL_free() -> free()
-rw-r--r-- | src/lib/libcrypto/kdf/tls1_prf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/kdf/tls1_prf.c b/src/lib/libcrypto/kdf/tls1_prf.c index dae42b684f..c0751b9721 100644 --- a/src/lib/libcrypto/kdf/tls1_prf.c +++ b/src/lib/libcrypto/kdf/tls1_prf.c | |||
@@ -51,7 +51,7 @@ static void pkey_tls1_prf_cleanup(EVP_PKEY_CTX *ctx) | |||
51 | TLS1_PRF_PKEY_CTX *kctx = ctx->data; | 51 | TLS1_PRF_PKEY_CTX *kctx = ctx->data; |
52 | freezero(kctx->sec, kctx->seclen); | 52 | freezero(kctx->sec, kctx->seclen); |
53 | explicit_bzero(kctx->seed, kctx->seedlen); | 53 | explicit_bzero(kctx->seed, kctx->seedlen); |
54 | OPENSSL_free(kctx); | 54 | free(kctx); |
55 | } | 55 | } |
56 | 56 | ||
57 | static int pkey_tls1_prf_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) | 57 | static int pkey_tls1_prf_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) |