mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
fix int overflow when parsing the transport parameters
This commit is contained in:
parent
fa69438124
commit
b2c4dacd25
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ func (p *TransportParameters) unmarshal(data []byte, sentBy protocol.Perspective
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
if r.Len() < int(paramLen) {
|
if uint64(r.Len()) < paramLen {
|
||||||
return fmt.Errorf("remaining length (%d) smaller than parameter length (%d)", r.Len(), paramLen)
|
return fmt.Errorf("remaining length (%d) smaller than parameter length (%d)", r.Len(), paramLen)
|
||||||
}
|
}
|
||||||
switch paramID {
|
switch paramID {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue