Update vendor Sabayon/pkgs-checker@v0.8.4 (#255)

* Update vendor Sabayon/pkgs-checker@v0.8.4

* Drop golang.org/x/text

Co-authored-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
This commit is contained in:
Daniele Rondina
2021-10-06 13:41:14 +02:00
committed by GitHub
parent 585b72c3d0
commit 77b4c9a972
218 changed files with 6541 additions and 5413 deletions

View File

@@ -1018,7 +1018,7 @@ func parseHeadersFrame(_ *frameCache, fh FrameHeader, p []byte) (_ Frame, err er
return nil, err
}
}
if len(p)-int(padLength) <= 0 {
if len(p)-int(padLength) < 0 {
return nil, streamError(fh.StreamID, ErrCodeProtocol)
}
hf.headerFragBuf = p[:len(p)-int(padLength)]