From: Dr. Stephen Henson Date: Wed, 22 Jun 2011 15:29:36 +0000 (+0000) Subject: PR: 2543 X-Git-Tag: OpenSSL_0_9_8s~47 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=cc0931e36bf2435d64b212b471de404b78fa8948;p=oweals%2Fopenssl.git PR: 2543 Submitted by: Robin Seggelmann Reviewed by: steve Correctly handle errors in DTLSv1_handle_timeout() --- diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c index 15dea6ed4a..736216f6aa 100644 --- a/ssl/d1_lib.c +++ b/ssl/d1_lib.c @@ -438,7 +438,7 @@ int dtls1_handle_timeout(SSL *s) { /* fail the connection, enough alerts have been sent */ SSLerr(SSL_F_DTLS1_HANDLE_TIMEOUT,SSL_R_READ_TIMEOUT_EXPIRED); - return 0; + return -1; } state->timeout.read_timeouts++;