mirror of https://github.com/Dreamacro/clash.git
Fix: potential overflow in ssr (#1600)
This commit is contained in:
parent
400dc923e0
commit
0c79d1207e
|
@ -278,7 +278,7 @@ func getRandStartPos(length int, random *tools.XorShift128Plus) int {
|
||||||
if length == 0 {
|
if length == 0 {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
return int(random.Next()%8589934609) % length
|
return int(int64(random.Next()%8589934609) % int64(length))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (a *authChainA) getRandLength(length int, lastHash []byte, random *tools.XorShift128Plus) int {
|
func (a *authChainA) getRandLength(length int, lastHash []byte, random *tools.XorShift128Plus) int {
|
||||||
|
|
Loading…
Reference in New Issue