ssl3_read_bytes bug fix
Submitted by: D P Chang <dpc@qualys.com> Reviewed by: Bodo
This commit is contained in:
parent
3c89d78dba
commit
dcbbf83dba
4
CHANGES
4
CHANGES
@ -12,6 +12,10 @@
|
|||||||
*) applies to 0.9.6a/0.9.6b/0.9.6c and 0.9.7
|
*) applies to 0.9.6a/0.9.6b/0.9.6c and 0.9.7
|
||||||
+) applies to 0.9.7 only
|
+) applies to 0.9.7 only
|
||||||
|
|
||||||
|
*) Fix ssl3_read_bytes (ssl/s3_pkt.c): To ignore messages of unknown
|
||||||
|
type, we must throw them away by setting rr->length to 0.
|
||||||
|
[D P Chang <dpc@qualys.com>]
|
||||||
|
|
||||||
-) OpenSSL 0.9.6c released [21 dec 2001]
|
-) OpenSSL 0.9.6c released [21 dec 2001]
|
||||||
|
|
||||||
+) SECURITY: remove unsafe setjmp/signal interaction from ui_openssl.c.
|
+) SECURITY: remove unsafe setjmp/signal interaction from ui_openssl.c.
|
||||||
|
@ -1087,6 +1087,7 @@ start:
|
|||||||
/* TLS just ignores unknown message types */
|
/* TLS just ignores unknown message types */
|
||||||
if (s->version == TLS1_VERSION)
|
if (s->version == TLS1_VERSION)
|
||||||
{
|
{
|
||||||
|
rr->length = 0;
|
||||||
goto start;
|
goto start;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user