Problem reported by Arun Giridhar in:
https://savannah.gnu.org/bugs/index.php?68042
* lib/gl_openssl.h (GL_CRYPTO_FN): Use a const pointer.
+2026-02-12 Paul Eggert <eggert@cs.ucla.edu>
+
+ crypto/*-buffer: propagate 'const'
+ Problem reported by Arun Giridhar in:
+ https://savannah.gnu.org/bugs/index.php?68042
+ * lib/gl_openssl.h (GL_CRYPTO_FN): Use a const pointer.
+
2026-02-12 Pádraig Brady <P@draigBrady.com>
parse-datetime: support dd.mm. in combination
GL_CRYPTO_FN (_read_ctx) (const struct _gl_ctx *ctx, void *restrict res)
{
/* Assume any unprocessed bytes in ctx are not to be ignored. */
- _gl_CTX tmp_ctx = *(_gl_CTX *) ctx;
+ _gl_CTX tmp_ctx = *(_gl_CTX const *) ctx;
OPENSSL_FN (_Final) ((unsigned char *) res, &tmp_ctx);
return res;
}