fix: sanity check status request v2 extension data (#246) (#247)

This commit is contained in:
VeNoMouS 2023-09-28 19:08:26 +13:00 committed by GitHub
parent d2b5b70b61
commit df6e4c827a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -504,11 +504,7 @@ func (e *StatusRequestV2Extension) Write(b []byte) (int, error) {
// RFC 4366, Section 3.6
var statusType uint8
var ignored cryptobyte.String
if !extData.ReadUint16LengthPrefixed(&ignored) ||
!extData.ReadUint8(&statusType) ||
!extData.ReadUint16LengthPrefixed(&ignored) ||
!extData.ReadUint16LengthPrefixed(&ignored) ||
!extData.ReadUint16LengthPrefixed(&ignored) {
if !extData.ReadUint16LengthPrefixed(&ignored) || !ignored.ReadUint8(&statusType) {
return fullLen, errors.New("unable to read status request v2 extension data")
}