projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f8f5f83
)
Fix session tickets
author
Matt Caswell
<matt@openssl.org>
Thu, 13 Aug 2015 09:04:23 +0000
(10:04 +0100)
committer
Matt Caswell
<matt@openssl.org>
Fri, 14 Aug 2015 16:00:11 +0000
(17:00 +0100)
Commit
9ceb2426b0
(PACKETise ClientHello) broke session tickets by failing
to detect the session ticket extension in an incoming ClientHello. This
commit fixes the bug.
Reviewed-by: Emilia Käsper <emilia@openssl.org>
ssl/t1_lib.c
patch
|
blob
|
history
diff --git
a/ssl/t1_lib.c
b/ssl/t1_lib.c
index e37411ccbf847d8d47ac5caf5ce7521ee3bf307b..f0042886c622d722a18c169bb6e2d044f7d7d9ce 100644
(file)
--- a/
ssl/t1_lib.c
+++ b/
ssl/t1_lib.c
@@
-3043,6
+3043,11
@@
int tls1_process_ticket(SSL *s, PACKET *pkt, unsigned char *session_id,
break;
}
goto end;
+ } else {
+ if (!PACKET_forward(pkt, size)) {
+ retv = -1;
+ goto end;
+ }
}
}
retv = 0;