mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 22:10:33 +00:00
Fixed crash in rand (#7103)
This commit is contained in:
committed by
Andreas Rumpf
parent
33b0e73962
commit
1b3f640188
@@ -115,6 +115,7 @@ proc rand*(r: var Rand; max: int): int {.benign.} =
|
||||
## random number is always the same, unless `randomize` is called
|
||||
## which initializes the random number generator with a "random"
|
||||
## number, i.e. a tickcount.
|
||||
if max == 0: return
|
||||
while true:
|
||||
let x = next(r)
|
||||
if x <= randMax - (randMax mod ui(max)):
|
||||
@@ -213,4 +214,8 @@ when isMainModule:
|
||||
shuffle(a)
|
||||
doAssert a[0] == 1
|
||||
doAssert a[1] == 0
|
||||
|
||||
doAssert rand(0) == 0
|
||||
doAssert rand("a") == 'a'
|
||||
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user