diff options
Diffstat (limited to 'main/openssl/apps/ca.c')
-rw-r--r-- | main/openssl/apps/ca.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/main/openssl/apps/ca.c b/main/openssl/apps/ca.c index 1cf50e00..9c25026a 100644 --- a/main/openssl/apps/ca.c +++ b/main/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; |