diff options
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 | } |
