diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2011-10-21 03:57:37 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2011-10-21 03:57:37 +0200 |
commit | dfe9a47519b7c6c12025f25a7023b632645a935d (patch) | |
tree | e3dbfa6d758d8c0e6e5bcd6283090e1ac772659a | |
parent | Check for uninitialised DRBG_CTX and don't free up default DRBG_CTX. (diff) | |
download | openssl-dfe9a47519b7c6c12025f25a7023b632645a935d.tar.xz openssl-dfe9a47519b7c6c12025f25a7023b632645a935d.zip |
fix (?) AVX clearing
-rw-r--r-- | fips/fips.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fips/fips.c b/fips/fips.c index 4f0f64cb83..169652b4b3 100644 --- a/fips/fips.c +++ b/fips/fips.c @@ -316,7 +316,7 @@ int FIPS_module_mode_set(int onoff, const char *auth) #ifdef OPENSSL_IA32_SSE2 { - unsigned int OPENSSL_ia32cap_P[]; + extern unsigned int OPENSSL_ia32cap_P[2]; if ((OPENSSL_ia32cap_P[0] & (1<<25|1<<26)) != (1<<25|1<<26)) { FIPSerr(FIPS_F_FIPS_MODULE_MODE_SET,FIPS_R_UNSUPPORTED_PLATFORM); @@ -325,7 +325,7 @@ int FIPS_module_mode_set(int onoff, const char *auth) goto end; } OPENSSL_ia32cap_P[0] |= (1<<28); /* set "shared cache" */ - OPENSSL_ia32cap_P[1] &= ~(1<<60); /* clear AVX */ + OPENSSL_ia32cap_P[1] &= ~(1<<(60-32)); /* clear AVX */ } #endif |