md5 unchanged
Build on RHEL9 docker image / build (push) Successful in 3m35s
Build on RHEL8 docker image / build (push) Successful in 4m51s
Run Simulator Tests on local RHEL9 / build (push) Failing after 6m13s
Run Simulator Tests on local RHEL8 / build (push) Failing after 7m58s

This commit is contained in:
2026-05-08 10:06:11 +02:00
parent e081502abc
commit 07c92ec97f
+4 -4
View File
@@ -243,10 +243,10 @@ int HASH_UPDATE(HASH_CTX *c, const void *data_, size_t len) {
len -= n;
c->num = 0;
/*
* We use memset rather than OPENSSL_cleanse() here
* deliberately. Using OPENSSL_cleanse() here could be a
* performance issue. It will get properly cleansed on
* finalisation so this isn't a security problem.
* We use memset rather than OPENSSL_cleanse() here deliberately.
* Using OPENSSL_cleanse() here could be a performance issue. It
* will get properly cleansed on finalisation so this isn't a
* security problem.
*/
memset(p, 0, HASH_CBLOCK); /* keep it zeroed */
} else {