| 143 | } |
| 144 | |
| 145 | static void ostat_req_cleanup(md_ocsp_status_t *ostat) |
| 146 | { |
| 147 | if (ostat->ocsp_req) { |
| 148 | OCSP_REQUEST_free(ostat->ocsp_req); |
| 149 | ostat->ocsp_req = NULL; |
| 150 | } |
| 151 | md_data_clear(&ostat->req_der); |
| 152 | } |
| 153 | |
| 154 | static int ostat_cleanup(void *ctx, const void *key, apr_ssize_t klen, const void *val) |
| 155 | { |
no test coverage detected