提交 aec13c1a 编写于 作者: D Dr. Stephen Henson

PR: 2063

Submitted by: Julia Lawall <julia@diku.dk>
Approved by: steve@openssl.org

Correct BIO_write error handling in ocsp_prn.c
上级 64f0f80e
...@@ -266,12 +266,12 @@ int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE* o, unsigned long flags) ...@@ -266,12 +266,12 @@ int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE* o, unsigned long flags)
if (!ASN1_GENERALIZEDTIME_print(bp,single->nextUpdate)) if (!ASN1_GENERALIZEDTIME_print(bp,single->nextUpdate))
goto err; goto err;
} }
if (!BIO_write(bp,"\n",1)) goto err; if (BIO_write(bp,"\n",1) <= 0) goto err;
if (!X509V3_extensions_print(bp, if (!X509V3_extensions_print(bp,
"Response Single Extensions", "Response Single Extensions",
single->singleExtensions, flags, 8)) single->singleExtensions, flags, 8))
goto err; 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", if (!X509V3_extensions_print(bp, "Response Extensions",
rd->responseExtensions, flags, 4)) rd->responseExtensions, flags, 4))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册