Skip to content

Commit

Permalink
release 2.4.16.4
Browse files Browse the repository at this point in the history
Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Sep 29, 2024
1 parent 48a5fae commit 38bbedf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
09/29/2024
- release 2.4.16.4

09/27/2024
- correct usage of free() for json_dumps return values instead of cjose_get_dealloc()()
- use compact encoding and preserve order where appropriate for most calls to json_dumps
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([mod_auth_openidc],[2.4.16.4rc3],[[email protected]])
AC_INIT([mod_auth_openidc],[2.4.16.4],[[email protected]])

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

Expand Down
3 changes: 2 additions & 1 deletion src/jose.c
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ char *oidc_jose_jwt_serialize(apr_pool_t *pool, oidc_jwt_t *jwt, oidc_jose_error

} else {

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

0 comments on commit 38bbedf

Please sign in to comment.