diff options
| author | tb <> | 2024-07-09 16:28:31 +0000 |
|---|---|---|
| committer | tb <> | 2024-07-09 16:28:31 +0000 |
| commit | 2ef58b9e43661eeef702407c6bb681dcef5aeacc (patch) | |
| tree | c4af6887eb41f13e1b096ca507bc25e7004ceaf3 /src | |
| parent | 26147f59894f4c6d12a3d3a15946c7d2e4cc6388 (diff) | |
| download | openbsd-2ef58b9e43661eeef702407c6bb681dcef5aeacc.tar.gz openbsd-2ef58b9e43661eeef702407c6bb681dcef5aeacc.tar.bz2 openbsd-2ef58b9e43661eeef702407c6bb681dcef5aeacc.zip | |
OPENSSL_malloc() -> malloc()
Diffstat (limited to 'src')
| -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 e2086e8d29..6d3d49cd25 100644 --- a/src/lib/libcrypto/kdf/tls1_prf.c +++ b/src/lib/libcrypto/kdf/tls1_prf.c | |||
| @@ -257,7 +257,7 @@ static int tls1_prf_alg(const EVP_MD *md, | |||
| 257 | seed, seed_len, out, olen)) | 257 | seed, seed_len, out, olen)) |
| 258 | return 0; | 258 | return 0; |
| 259 | 259 | ||
| 260 | if ((tmp = OPENSSL_malloc(olen)) == NULL) { | 260 | if ((tmp = malloc(olen)) == NULL) { |
| 261 | KDFerror(ERR_R_MALLOC_FAILURE); | 261 | KDFerror(ERR_R_MALLOC_FAILURE); |
| 262 | return 0; | 262 | return 0; |
| 263 | } | 263 | } |
