summaryrefslogtreecommitdiffstats
path: root/package/openssl/patches/900-CVE-2009-1379.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/openssl/patches/900-CVE-2009-1379.patch')
-rw-r--r--package/openssl/patches/900-CVE-2009-1379.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/package/openssl/patches/900-CVE-2009-1379.patch b/package/openssl/patches/900-CVE-2009-1379.patch
deleted file mode 100644
index b72f116897..0000000000
--- a/package/openssl/patches/900-CVE-2009-1379.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- a/ssl/d1_both.c
-+++ b/ssl/d1_both.c
-@@ -519,6 +519,7 @@ dtls1_retrieve_buffered_fragment(SSL *s,
-
- 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 @@ dtls1_retrieve_buffered_fragment(SSL *s,
- if (al==0)
- {
- *ok = 1;
-- return frag->msg_header.frag_len;
-+ return frag_len;
- }
-
- ssl3_send_alert(s,SSL3_AL_FATAL,al);