mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
prevent int64 overflow when reading the expiry date of the server config
This commit is contained in:
parent
f9013edb77
commit
52ba2ce9f8
4 changed files with 26 additions and 1 deletions
|
@ -25,6 +25,11 @@ var _ = Describe("Min / Max", func() {
|
|||
Expect(MaxUint64(7, 5)).To(Equal(uint64(7)))
|
||||
})
|
||||
|
||||
It("returns the minimum uint64", func() {
|
||||
Expect(MinUint64(5, 7)).To(Equal(uint64(5)))
|
||||
Expect(MinUint64(7, 5)).To(Equal(uint64(5)))
|
||||
})
|
||||
|
||||
It("returns the maximum int64", func() {
|
||||
Expect(MaxInt64(5, 7)).To(Equal(int64(7)))
|
||||
Expect(MaxInt64(7, 5)).To(Equal(int64(7)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue