summaryrefslogtreecommitdiffstats
path: root/package/openssl/patches/900-CVE-2009-1379.patch
diff options
context:
space:
mode:
authorkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-11-12 10:39:10 +0000
committerkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-11-12 10:39:10 +0000
commit26862c3e56fe9164f7a7a45305d99965145b975e (patch)
treefbc4ee2418a3a4a59ed09f6f9edc9f96c0d5969d /package/openssl/patches/900-CVE-2009-1379.patch
parent6e4aacf42ab90c882bbbdcc35f36e8853128d5df (diff)
update openssl to 0.9.8l -- thanks puchu
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18398 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openssl/patches/900-CVE-2009-1379.patch')
-rw-r--r--package/openssl/patches/900-CVE-2009-1379.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/package/openssl/patches/900-CVE-2009-1379.patch b/package/openssl/patches/900-CVE-2009-1379.patch
new file mode 100644
index 000000000..706732435
--- /dev/null
+++ b/package/openssl/patches/900-CVE-2009-1379.patch
@@ -0,0 +1,22 @@
+Index: openssl/ssl/d1_both.c
+RCS File: /v/openssl/cvs/openssl/ssl/d1_both.c,v
+rcsdiff -q -kk '-r1.14.2.6' '-r1.14.2.7' -u '/v/openssl/cvs/openssl/ssl/d1_both.c,v' 2>/dev/null
+--- d1_both.c 2009/04/22 12:17:02 1.14.2.6
++++ d1_both.c 2009/05/13 11:51:30 1.14.2.7
+@@ -519,6 +519,7 @@
+
+ if ( s->d1->handshake_read_seq == frag->msg_header.seq)
+ {
++ unsigned long frag_len = frag->msg_header.frag_len;
+ pqueue_pop(s->d1->buffered_messages);
+
+ al=dtls1_preprocess_fragment(s,&frag->msg_header,max);
+@@ -536,7 +537,7 @@
+ if (al==0)
+ {
+ *ok = 1;
+- return frag->msg_header.frag_len;
++ return frag_len;
+ }
+
+ ssl3_send_alert(s,SSL3_AL_FATAL,al);