The branch master has been updated via bb97dc508f85c729a0e5ac793557067016f879e5 (commit) from 365d207faa9245bf55879595ee6e7f63da84610d (commit)
- Log ----------------------------------------------------------------- commit bb97dc508f85c729a0e5ac793557067016f879e5 Author: Tom Cosgrove <tom.cosgr...@arm.com> Date: Wed May 26 16:46:00 2021 +0100 Initialise OPENSSL_armcap_P to 0 before setting it based on capabilities, not after Signed-off-by: Tom Cosgrove <tom.cosgr...@arm.com> Reviewed-by: Tomas Mraz <to...@openssl.org> Reviewed-by: Shane Lontis <shane.lon...@oracle.com> Reviewed-by: Paul Dale <pa...@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15486) ----------------------------------------------------------------------- Summary of changes: crypto/armcap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/armcap.c b/crypto/armcap.c index 28cadfbb2e..43438e0aa4 100644 --- a/crypto/armcap.c +++ b/crypto/armcap.c @@ -133,6 +133,8 @@ void OPENSSL_cpuid_setup(void) return; trigger = 1; + OPENSSL_armcap_P = 0; + if ((e = getenv("OPENSSL_armcap"))) { OPENSSL_armcap_P = (unsigned int)strtoul(e, NULL, 0); return; @@ -166,8 +168,6 @@ void OPENSSL_cpuid_setup(void) # endif # endif - OPENSSL_armcap_P = 0; - # ifdef OSSL_IMPLEMENT_GETAUXVAL if (getauxval(HWCAP) & HWCAP_NEON) { unsigned long hwcap = getauxval(HWCAP_CE);