Skip to content

Commit 05e8f13

Browse files
committed
fix: integer overflow in ports iteration
1 parent 136d114 commit 05e8f13

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

common/utils/ranges.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,13 @@ func (ranges IntRanges[T]) Range(f func(t T) bool) {
139139
}
140140

141141
for _, r := range ranges {
142-
for i := r.Start(); i <= r.End(); i++ {
142+
for i := r.Start(); i <= r.End() && i >= r.Start(); i++ {
143143
if !f(i) {
144144
return
145145
}
146+
if i+1 < i { // integer overflow
147+
break
148+
}
146149
}
147150
}
148151
}

0 commit comments

Comments
 (0)