aboutsummaryrefslogtreecommitdiff
path: root/openssl/ssl/d1_enc.c
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/ssl/d1_enc.c')
-rw-r--r--openssl/ssl/d1_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/ssl/d1_enc.c b/openssl/ssl/d1_enc.c
index becbab91c..07a5e97ce 100644
--- a/openssl/ssl/d1_enc.c
+++ b/openssl/ssl/d1_enc.c
@@ -260,7 +260,7 @@ int dtls1_enc(SSL *s, int send)
}
/* TLS 1.0 does not bound the number of padding bytes by the block size.
* All of them must have value 'padding_length'. */
- if (i > (int)rec->length)
+ if (i + bs > (int)rec->length)
{
/* Incorrect padding. SSLerr() and ssl3_alert are done
* by caller: we don't want to reveal whether this is