projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a4dc7e
)
PR: 2063
author
Dr. Stephen Henson
<steve@openssl.org>
Wed, 30 Sep 2009 23:59:42 +0000
(23:59 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Wed, 30 Sep 2009 23:59:42 +0000
(23:59 +0000)
Submitted by: Julia Lawall <julia@diku.dk>
Approved by: steve@openssl.org
Correct BIO_write error handling in ocsp_prn.c
crypto/ocsp/ocsp_prn.c
patch
|
blob
|
history
diff --git
a/crypto/ocsp/ocsp_prn.c
b/crypto/ocsp/ocsp_prn.c
index 3dfb51c1e41c6cf5ccf5644e3a3125f02df9ee8d..01f81e7a59a28dfefcb3b6a662a7ad9b993ca1aa 100644
(file)
--- 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))