Fixing memory leak in OpenConnect auth module

This commit is contained in:
Feng Xie
2022-03-01 22:28:47 +00:00
parent 8b00d198d9
commit 030163fbbe

View File

@@ -596,6 +596,10 @@ static bool oidc_verify_signature(oidc_vctx_st * vctx, cjose_jws_t * jws)
result = true;
cleanup:
if (jwk) {
cjose_jwk_release(jwk);
}
return result;
}