artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f137674
)
OPENSSL_malloc() -> malloc()
author
tb
<tb@openbsd.org>
Tue, 9 Jul 2024 16:28:31 +0000
(16:28 +0000)
committer
tb
<tb@openbsd.org>
Tue, 9 Jul 2024 16:28:31 +0000
(16:28 +0000)
lib/libcrypto/kdf/tls1_prf.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/kdf/tls1_prf.c
b/lib/libcrypto/kdf/tls1_prf.c
index
e2086e8
..
6d3d49c
100644
(file)
--- a/
lib/libcrypto/kdf/tls1_prf.c
+++ b/
lib/libcrypto/kdf/tls1_prf.c
@@
-257,7
+257,7
@@
static int tls1_prf_alg(const EVP_MD *md,
seed, seed_len, out, olen))
return 0;
- if ((tmp =
OPENSSL_
malloc(olen)) == NULL) {
+ if ((tmp = malloc(olen)) == NULL) {
KDFerror(ERR_R_MALLOC_FAILURE);
return 0;
}