Update go-dnsstamps

This commit is contained in:
Frank Denis 2019-10-14 10:50:09 +02:00
parent f06967a020
commit e6b9f3c2c0
4 changed files with 6 additions and 6 deletions

View file

@ -249,9 +249,9 @@ func newDNSCryptRelayStamp(bin []byte) (ServerStamp, error) {
return stamp, errors.New("Stamp is too short")
}
binLen := len(bin)
pos := 0
pos := 1
length := int(bin[pos])
if 1+length >= binLen-pos {
if 1+length > binLen-pos {
return stamp, errors.New("Invalid stamp")
}
pos++