diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2010-03-26 10:16:31 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-03-31 10:59:03 +0200 |
commit | aa3486fd52f6cfd034b4d31d7821cf83206953bb (patch) | |
tree | 1d31bca2c4e705cc0f2a161f3fc8246c8ba04de0 /package/openssl/openssl-CVE-2009-1378.patch | |
parent | 26b44b2b0272e7f51415942c72328e9a3dbe400a (diff) |
openssl: bump version
Closes #1411
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/openssl/openssl-CVE-2009-1378.patch')
-rw-r--r-- | package/openssl/openssl-CVE-2009-1378.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/package/openssl/openssl-CVE-2009-1378.patch b/package/openssl/openssl-CVE-2009-1378.patch deleted file mode 100644 index dba1b3983..000000000 --- a/package/openssl/openssl-CVE-2009-1378.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -Nura openssl-0.9.8l/ssl/d1_both.c openssl-0.9.8l-CVE-2009-1378/ssl/d1_both.c ---- openssl-0.9.8l/ssl/d1_both.c 2007-10-17 18:17:49.000000000 -0300 -+++ openssl-0.9.8l-CVE-2009-1378/ssl/d1_both.c 2009-11-10 13:20:02.000000000 -0300 -@@ -561,7 +561,16 @@ - if ((msg_hdr->frag_off+frag_len) > msg_hdr->msg_len) - goto err; - -- if (msg_hdr->seq <= s->d1->handshake_read_seq) -+ /* Try to find item in queue, to prevent duplicate entries */ -+ pq_64bit_init(&seq64); -+ pq_64bit_assign_word(&seq64, msg_hdr->seq); -+ item = pqueue_find(s->d1->buffered_messages, seq64); -+ pq_64bit_free(&seq64); -+ -+ /* Discard the message if sequence number was already there, is -+ * too far in the future or the fragment is already in the queue */ -+ if (msg_hdr->seq <= s->d1->handshake_read_seq || -+ msg_hdr->seq > s->d1->handshake_read_seq + 10 || item != NULL) - { - unsigned char devnull [256]; - |