[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Matt Caswell matt at openssl.org
Fri May 22 09:26:47 UTC 2015


The branch OpenSSL_1_0_2-stable has been updated
       via  254c01ed548263cf7128f54dc5c51b4df18f9b37 (commit)
      from  2d8e705b2a68a6dfe620f781c55e8230a0cb2dfb (commit)


- Log -----------------------------------------------------------------
commit 254c01ed548263cf7128f54dc5c51b4df18f9b37
Author: Lubom <lubomir.sedlar at gmail.com>
Date:   Thu May 7 14:20:31 2015 +0100

    Lost alert in DTLS
    
    If a client receives a bad hello request in DTLS then the alert is not
    sent correctly.
    
    RT#2801
    
    Signed-off-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Kurt Roeckx <kurt at openssl.org>
    (cherry picked from commit 4dc1aa0436fdb8af50960db676b739c8ef81f38c)

-----------------------------------------------------------------------

Summary of changes:
 ssl/d1_pkt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ssl/d1_pkt.c b/ssl/d1_pkt.c
index 940ca69..fe30ec7 100644
--- a/ssl/d1_pkt.c
+++ b/ssl/d1_pkt.c
@@ -1069,7 +1069,7 @@ int dtls1_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek)
             (s->d1->handshake_fragment[3] != 0)) {
             al = SSL_AD_DECODE_ERROR;
             SSLerr(SSL_F_DTLS1_READ_BYTES, SSL_R_BAD_HELLO_REQUEST);
-            goto err;
+            goto f_err;
         }
 
         /*


More information about the openssl-commits mailing list