diff options
author | marha <marha@users.sourceforge.net> | 2014-09-02 18:24:12 +0200 |
---|---|---|
committer | Mike DePaulo <mikedep333@gmail.com> | 2015-02-28 07:15:53 -0500 |
commit | 8fafe3481b134a4d368ba57e3698754a6a45c4c1 (patch) | |
tree | b617e841e1b5c0b234f7698331e5fb1be1c2332a /openssl/apps/ca.c | |
parent | fe03d6aef6338e43593f164b09ae993bcd0ecbdd (diff) | |
download | vcxsrv-8fafe3481b134a4d368ba57e3698754a6a45c4c1.tar.gz vcxsrv-8fafe3481b134a4d368ba57e3698754a6a45c4c1.tar.bz2 vcxsrv-8fafe3481b134a4d368ba57e3698754a6a45c4c1.zip |
Upgrade openssl to version openssl-1.0.1i
Diffstat (limited to 'openssl/apps/ca.c')
-rw-r--r-- | openssl/apps/ca.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/openssl/apps/ca.c b/openssl/apps/ca.c index 1cf50e002..9c25026ac 100644 --- a/openssl/apps/ca.c +++ b/openssl/apps/ca.c @@ -1620,12 +1620,14 @@ static int certify(X509 **xret, char *infile, EVP_PKEY *pkey, X509 *x509, { ok=0; BIO_printf(bio_err,"Signature verification problems....\n"); + ERR_print_errors(bio_err); goto err; } if (i == 0) { ok=0; BIO_printf(bio_err,"Signature did not match the certificate request\n"); + ERR_print_errors(bio_err); goto err; } else @@ -2777,6 +2779,9 @@ char *make_revocation_str(int rev_type, char *rev_arg) revtm = X509_gmtime_adj(NULL, 0); + if (!revtm) + return NULL; + i = revtm->length + 1; if (reason) i += strlen(reason) + 1; |