Skip to content
Snippets Groups Projects
Commit 0761771b authored by Francesco Giacomini's avatar Francesco Giacomini
Browse files

initialize result

parent 17b903c6
No related branches found
No related tags found
No related merge requests found
Pipeline #11509 passed
......@@ -560,10 +560,13 @@ static ngx_int_t get_ssl_client_ee_dn(ngx_http_request_t* r,
return NGX_OK;
}
static ngx_int_t get_ssl_client_ee_cert_raw(ngx_http_request_t* r, ngx_str_t* result)
static ngx_int_t get_ssl_client_ee_cert_raw(ngx_http_request_t* r,
ngx_str_t* result)
{
ngx_log_error(NGX_LOG_DEBUG, r->connection->log, 0, "%s", __func__);
*result = {};
auto ee_cert = get_ee_cert(r);
if (!ee_cert) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment