From: Dr. Stephen Henson Date: Wed, 30 Sep 2009 23:59:42 +0000 (+0000) Subject: PR: 2063 X-Git-Tag: OpenSSL_0_9_8m-beta1~98 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=36a38a7a276f6edbe5df73a8630fad1bf7fa1b6c;p=oweals%2Fopenssl.git PR: 2063 Submitted by: Julia Lawall Approved by: steve@openssl.org Correct BIO_write error handling in ocsp_prn.c --- diff --git a/crypto/ocsp/ocsp_prn.c b/crypto/ocsp/ocsp_prn.c index 3dfb51c1e4..01f81e7a59 100644 --- a/crypto/ocsp/ocsp_prn.c +++ b/crypto/ocsp/ocsp_prn.c @@ -266,12 +266,12 @@ int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE* o, unsigned long flags) if (!ASN1_GENERALIZEDTIME_print(bp,single->nextUpdate)) goto err; } - if (!BIO_write(bp,"\n",1)) goto err; + if (BIO_write(bp,"\n",1) <= 0) goto err; if (!X509V3_extensions_print(bp, "Response Single Extensions", single->singleExtensions, flags, 8)) goto err; - if (!BIO_write(bp,"\n",1)) goto err; + if (BIO_write(bp,"\n",1) <= 0) goto err; } if (!X509V3_extensions_print(bp, "Response Extensions", rd->responseExtensions, flags, 4))