Skip to content

Commit 38bbedf

Browse files
committed
release 2.4.16.4
Signed-off-by: Hans Zandbelt <hans.zandbelt@openidc.com>
1 parent 48a5fae commit 38bbedf

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+
09/29/2024
2+
- release 2.4.16.4
3+
14
09/27/2024
25
- correct usage of free() for json_dumps return values instead of cjose_get_dealloc()()
36
- use compact encoding and preserve order where appropriate for most calls to json_dumps

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.16.4rc3],[hans.zandbelt@openidc.com])
1+
AC_INIT([mod_auth_openidc],[2.4.16.4],[hans.zandbelt@openidc.com])
22

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

src/jose.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,8 @@ char *oidc_jose_jwt_serialize(apr_pool_t *pool, oidc_jwt_t *jwt, oidc_jose_error
207207

208208
} else {
209209

210-
// out: "the returned string pointer is owned by the JWS, the caller should not attempt to free it directly"
210+
// out: "the returned string pointer is owned by the JWS, the caller should not attempt to free it
211+
// directly"
211212
if (cjose_jws_export(jwt->cjose_jws, (const char **)&out, &cjose_err) == FALSE) {
212213
oidc_jose_error(err, "cjose_jws_export failed: %s", oidc_cjose_e2s(pool, cjose_err));
213214
return NULL;

0 commit comments

Comments
 (0)