diff options
Diffstat (limited to 'src/lib/libcrypto/ocsp/ocsp_ht.c')
-rw-r--r-- | src/lib/libcrypto/ocsp/ocsp_ht.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ocsp/ocsp_ht.c b/src/lib/libcrypto/ocsp/ocsp_ht.c index a42b4f03f4..894d51d532 100644 --- a/src/lib/libcrypto/ocsp/ocsp_ht.c +++ b/src/lib/libcrypto/ocsp/ocsp_ht.c | |||
@@ -110,8 +110,7 @@ OCSP_REQ_CTX_free(OCSP_REQ_CTX *rctx) | |||
110 | { | 110 | { |
111 | if (rctx->mem) | 111 | if (rctx->mem) |
112 | BIO_free(rctx->mem); | 112 | BIO_free(rctx->mem); |
113 | if (rctx->iobuf) | 113 | free(rctx->iobuf); |
114 | free(rctx->iobuf); | ||
115 | free(rctx); | 114 | free(rctx); |
116 | } | 115 | } |
117 | 116 | ||