aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ocsp
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-03-12 12:06:48 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-03-12 12:06:48 +0000
commite45c32fabf35e50ea451e8a0180c575104e700ac (patch)
tree5f3946c097da152b09cf62f3effa1cb1edae3ac4 /crypto/ocsp
parentfb75f349b75c8dda6edd56a6d3396153099cc2d8 (diff)
downloadopenssl-e45c32fabf35e50ea451e8a0180c575104e700ac.tar.gz
missing goto meant signature was never printed out
Diffstat (limited to 'crypto/ocsp')
-rw-r--r--crypto/ocsp/ocsp_prn.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/ocsp/ocsp_prn.c b/crypto/ocsp/ocsp_prn.c
index 9fe6f0fb02..1695c9c4ad 100644
--- a/crypto/ocsp/ocsp_prn.c
+++ b/crypto/ocsp/ocsp_prn.c
@@ -275,6 +275,7 @@ int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE* o, unsigned long flags)
}
if (!X509V3_extensions_print(bp, "Response Extensions",
rd->responseExtensions, flags, 4))
+ goto err;
if(X509_signature_print(bp, br->signatureAlgorithm, br->signature) <= 0)
goto err;