From 1b3f640188b06c6b6c1ead5ab4d28345a93ace73 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Thu, 18 Jan 2018 20:47:58 +0300 Subject: Fixed crash in rand (#7103) --- lib/pure/random.nim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/pure/random.nim b/lib/pure/random.nim index de419b9fb..97ad12b99 100644 --- a/lib/pure/random.nim +++ b/lib/pure/random.nim @@ -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() -- cgit 1.4.1-2-gfad0