summaryrefslogtreecommitdiffstats
path: root/crypto/ocsp/ocsp_http.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ocsp/ocsp_http.c')
-rw-r--r--crypto/ocsp/ocsp_http.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/crypto/ocsp/ocsp_http.c b/crypto/ocsp/ocsp_http.c
index 4867929424..907720aac1 100644
--- a/crypto/ocsp/ocsp_http.c
+++ b/crypto/ocsp/ocsp_http.c
@@ -50,17 +50,16 @@ OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req)
{
OCSP_RESPONSE *resp = NULL;
OSSL_HTTP_REQ_CTX *ctx;
- int rv;
ctx = OCSP_sendreq_new(b, path, req, -1 /* default max resp line length */);
if (ctx == NULL)
return NULL;
- rv = OCSP_sendreq_nbio(&resp, ctx);
+ OCSP_sendreq_nbio(&resp, ctx);
/* this indirectly calls ERR_clear_error(): */
OSSL_HTTP_REQ_CTX_free(ctx);
- return rv == 1 ? resp : NULL;
+ return resp;
}
#endif /* !defined(OPENSSL_NO_OCSP) */