Skip to content

Commit b134a74

Browse files
committed
fix OIDCProviderRevocationEndpoint; see #1301; thanks @tarteens
when not setting it to "" Signed-off-by: Hans Zandbelt <[email protected]>
1 parent 8ebf6fd commit b134a74

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,4 @@ reporting bugs, providing fixes, suggesting useful features or other:
9494
David P. Discher <https://github.com/daviddpd>
9595
ryanwilliamnicholls <https://github.com/ryanwilliamnicholls>
9696
Dmitrii Ermakov <https://github.com/ErmakovDmitriy>
97+
tarteens <https://github.com/tarteens>

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
01/24/2025
2+
- fix OIDCProviderRevocationEndpoint when not setting it to ""; see #1301; thanks @tarteens
3+
14
01/19/2025
25
- jose: prevent memory leaks when zlib compressing (deflate) fails in oidc_jose_zlib_compress
36

src/cfg/provider.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ const char *oidc_cmd_provider_revocation_endpoint_url_set(cmd_parms *cmd, void *
662662
cfg->provider->revocation_endpoint_url = "";
663663
return NULL;
664664
}
665-
return oidc_cfg_provider_revocation_endpoint_url_set(cmd->pool, cfg->provider, args);
665+
return oidc_cfg_provider_revocation_endpoint_url_set(cmd->pool, cfg->provider, w);
666666
}
667667

668668
const char *oidc_cfg_provider_revocation_endpoint_url_get(oidc_provider_t *provider) {

0 commit comments

Comments
 (0)