Skip to content

Commit b2e9915

Browse files
committed
release 2.4.17
Signed-off-by: Hans Zandbelt <[email protected]>
1 parent e5fba23 commit b2e9915

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
04/22/2025
2+
- release 2.4.17
3+
14
04/19/2025
25
- metadata: fix parsing the OPs `token_endpoint_auth_methods_supported` and avoid the log error:
36
oidc_metadata_provider_parse: oidc_provider_token_endpoint_auth_set: invalid value

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([mod_auth_openidc],[2.4.17rc2],[[email protected]])
1+
AC_INIT([mod_auth_openidc],[2.4.17],[[email protected]])
22

33
AC_SUBST(NAMEVER, AC_PACKAGE_TARNAME()-AC_PACKAGE_VERSION())
44

src/metadata.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,8 @@ static const char *oidc_metadata_valid_string_in_array(apr_pool_t *pool, json_t
252252
oidc_valid_function_t valid_function, char **value,
253253
apr_byte_t optional, const char *preference) {
254254
int i = 0;
255-
if (value) *value = NULL;
255+
if (value)
256+
*value = NULL;
256257
json_t *json_arr = json_object_get(json, key);
257258
apr_byte_t found = FALSE;
258259
if ((json_arr != NULL) && (json_is_array(json_arr))) {

0 commit comments

Comments
 (0)