mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Bug fix: fix cert decompression via zlib by ignoring EOF
An io.Reader is allowed (but not required) to return io.EOF upon reading the last byte of the stream, even if no subsequent bytes were requested. We later check that we read the expected number of bytes, so we can safely ignore EOF errors returned by the decompression readers.
This commit is contained in:
parent
7f6efbee77
commit
5b69625c72
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ func (hs *clientHandshakeStateTLS13) decompressCert(m utlsCompressedCertificateM
|
|||
rawMsg[3] = uint8(m.uncompressedLength)
|
||||
|
||||
n, err := decompressed.Read(rawMsg[4:])
|
||||
if err != nil {
|
||||
if err != nil && !errors.Is(err, io.EOF) {
|
||||
c.sendAlert(alertBadCertificate)
|
||||
return nil, err
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue