diff options
author | Xin LI <delphij@FreeBSD.org> | 2014-01-07 19:02:08 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2014-01-07 19:02:08 +0000 |
commit | cbbee3a581d0bbf1b738c0805da55a438c265a20 (patch) | |
tree | 2e2eb91a8a37902a3e02fcc8726521f89373fdd8 /ssl/s3_both.c | |
parent | ed4c5254dd244e65403ee0ca57f1a5727ff1761d (diff) |
Notes
Diffstat (limited to 'ssl/s3_both.c')
-rw-r--r-- | ssl/s3_both.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ssl/s3_both.c b/ssl/s3_both.c index ead01c82a14a..ae0ee27c41aa 100644 --- a/ssl/s3_both.c +++ b/ssl/s3_both.c @@ -208,7 +208,11 @@ static void ssl3_take_mac(SSL *s) { const char *sender; int slen; - + /* If no new cipher setup return immediately: other functions will + * set the appropriate error. + */ + if (s->s3->tmp.new_cipher == NULL) + return; if (s->state & SSL_ST_CONNECT) { sender=s->method->ssl3_enc->server_finished_label; |