summaryrefslogtreecommitdiffstats
path: root/ssl/d1_pkt.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-07-01 11:32:40 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-07-01 11:32:40 +0000
commitb29b576957c53ca1eef1525f82dbad8d9a14fca2 (patch)
tree4cce217a4da11b2ed632616926ef5b5495efb763 /ssl/d1_pkt.c
parentabe389fd285a337065539486afbe4526677b9169 (diff)
Update from 1.0.0-stable
Diffstat (limited to 'ssl/d1_pkt.c')
-rw-r--r--ssl/d1_pkt.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ssl/d1_pkt.c b/ssl/d1_pkt.c
index d88ef19fcd..bc75b537fb 100644
--- a/ssl/d1_pkt.c
+++ b/ssl/d1_pkt.c
@@ -581,6 +581,7 @@ again:
/* this packet contained a partial record, dump it */
if ( n != i)
{
+ rr->length = 0;
s->packet_length = 0;
goto again;
}
@@ -594,6 +595,7 @@ again:
bitmap = dtls1_get_bitmap(s, rr, &is_next_epoch);
if ( bitmap == NULL)
{
+ rr->length = 0;
s->packet_length = 0; /* dump this record */
goto again; /* get another record */
}
@@ -617,6 +619,7 @@ again:
{
dtls1_record_bitmap_update(s, bitmap);
dtls1_buffer_record(s, &(s->d1->unprocessed_rcds), rr->seq_num);
+ rr->length = 0;
s->packet_length = 0;
goto again;
}