From fbed30e8c99de3c4301264cd4ca6e82c709533c4 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Thu, 26 Jan 2017 15:54:12 +0100 Subject: [PATCH] chg: lets not have it static, since I get the same nonce in the same session over again. --- common/random.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/common/random.c b/common/random.c index 62d0cbeb..df549968 100644 --- a/common/random.c +++ b/common/random.c @@ -1,6 +1,6 @@ #include "random.h" -static uint64_t next_random = 1; + uint64_t next_random = 1; /* Generates a (non-cryptographically secure) 32-bit random number. * @@ -13,7 +13,9 @@ uint32_t prand() { if (next_random == 1) next_random = GetTickCount(); - next_random = next_random * 6364136223846793005 + 1; + next_random *= 6364136223846793005; + next_random += 1; + return (uint32_t)(next_random >> 32) % 0xffffffff; } -- 2.39.2