projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a8ba07
)
Check public key is not NULL.
author
Dr. Stephen Henson
<steve@openssl.org>
Wed, 18 Feb 2015 00:34:59 +0000
(
00:34
+0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Mon, 2 Mar 2015 15:26:57 +0000
(15:26 +0000)
CVE-2015-0288
PR#3708
Reviewed-by: Matt Caswell <matt@openssl.org>
(cherry picked from commit
28a00bcd8e318da18031b2ac8778c64147cd54f9
)
crypto/x509/x509_req.c
patch
|
blob
|
history
diff --git
a/crypto/x509/x509_req.c
b/crypto/x509/x509_req.c
index c1a2608819484a2e1d06aceab580c16c3957d925..31e59c49dbfb049792f9fe3ee2c0b0b8950d1fe4 100644
(file)
--- a/
crypto/x509/x509_req.c
+++ b/
crypto/x509/x509_req.c
@@
-91,6
+91,8
@@
X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md)
goto err;
pktmp = X509_get_pubkey(x);
+ if (pktmp == NULL)
+ goto err;
i = X509_REQ_set_pubkey(ret, pktmp);
EVP_PKEY_free(pktmp);
if (!i)