Fix ssl3_get_message to handle message fragmentation correctly.

This commit is contained in:
Bodo Möller
2001-10-15 17:42:43 +00:00
parent 1147fa5a5f
commit 2dbdcd9734
2 changed files with 5 additions and 0 deletions

View File

@@ -436,6 +436,7 @@ long ssl3_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok)
/* next state (stn) */
p=(unsigned char *)s->init_buf->data;
n=s->s3->tmp.message_size;
n -= s->init_num;
while (n > 0)
{
i=ssl3_read_bytes(s,SSL3_RT_HANDSHAKE,&p[s->init_num],n,0);