artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c93c90b
)
Change OPENSSL_strdup() to strdup()
author
job
<job@openbsd.org>
Thu, 2 Sep 2021 21:40:32 +0000
(21:40 +0000)
committer
job
<job@openbsd.org>
Thu, 2 Sep 2021 21:40:32 +0000
(21:40 +0000)
OK tb@
lib/libcrypto/x509/x509_asid.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/x509/x509_asid.c
b/lib/libcrypto/x509/x509_asid.c
index
511002a
..
f35d5e9
100644
(file)
--- a/
lib/libcrypto/x509/x509_asid.c
+++ b/
lib/libcrypto/x509/x509_asid.c
@@
-761,7
+761,7
@@
static void *v2i_ASIdentifiers(const struct v3_ext_method *method,
goto err;
}
} else {
- char *s =
OPENSSL_
strdup(val->value);
+ char *s = strdup(val->value);
if (s == NULL) {
X509V3error(ERR_R_MALLOC_FAILURE);
goto err;