Use the current record offset in ssl3_get_record
authorMatt Caswell <matt@openssl.org>
Tue, 26 Apr 2016 15:07:17 +0000 (16:07 +0100)
committerMatt Caswell <matt@openssl.org>
Tue, 17 May 2016 15:37:45 +0000 (16:37 +0100)
commitde0717ebccd7daf6e68b6aae09e900c9cd9ad37d
tree816e2e6a81f3f26db3b282506c9b1fcc603b47bd
parent6da573921503126f3f4f4f48dedce41e5b0ea780
Use the current record offset in ssl3_get_record

The function ssl3_get_record() can obtain multiple records in one go
as long as we are set up for pipelining and all the records are app
data records. The logic in the while loop which reads in each record is
supposed to only continue looping if the last record we read was app data
and we have an app data record waiting in the buffer to be processed. It
was actually checking that the first record had app data and we have an
app data record waiting. This actually amounts to the same thing so wasn't
wrong - but it looks a bit odd because it uses the |rr| array without an
offset.

Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
ssl/record/ssl3_record.c