diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-04-19 14:05:53 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-04-19 14:05:53 +0000 |
commit | 5a7ac3d04453eeb6650f52d4d9ce4ab5c7172d25 (patch) | |
tree | 6615594949bf6d801c9242e05860267071469dae /package/openssl/patches | |
parent | 26b3c316349c5e4158405efd763916a49220b3ba (diff) | |
download | upstream-5a7ac3d04453eeb6650f52d4d9ce4ab5c7172d25.tar.gz upstream-5a7ac3d04453eeb6650f52d4d9ce4ab5c7172d25.tar.bz2 upstream-5a7ac3d04453eeb6650f52d4d9ce4ab5c7172d25.zip |
openssl: update to v1.0.1a (CVE-2012-2110)
SVN-Revision: 31346
Diffstat (limited to 'package/openssl/patches')
-rw-r--r-- | package/openssl/patches/210-no-OPENSSL_ia32cap_P.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/openssl/patches/210-no-OPENSSL_ia32cap_P.patch b/package/openssl/patches/210-no-OPENSSL_ia32cap_P.patch new file mode 100644 index 0000000000..6ddf009340 --- /dev/null +++ b/package/openssl/patches/210-no-OPENSSL_ia32cap_P.patch @@ -0,0 +1,12 @@ +--- a/crypto/evp/e_rc4_hmac_md5.c ++++ b/crypto/evp/e_rc4_hmac_md5.c +@@ -289,8 +289,6 @@ static EVP_CIPHER r4_hmac_md5_cipher= + + const EVP_CIPHER *EVP_rc4_hmac_md5(void) + { +- extern unsigned int OPENSSL_ia32cap_P[]; +- /* RC4_CHAR flag ------------vvvvv */ +- return(OPENSSL_ia32cap_P[0]&(1<<20) ? NULL : &r4_hmac_md5_cipher); ++ return(&r4_hmac_md5_cipher); + } + #endif |