From 7283d2513c19618785d983e254005b9d36c7068e Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Wed, 5 Sep 2018 10:57:33 +0100 Subject: [PATCH] stdlib/arc4random.c: Fix reseed count for 16-bit targets. --- newlib/libc/stdlib/arc4random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newlib/libc/stdlib/arc4random.c b/newlib/libc/stdlib/arc4random.c index 3cccc3ed4..7632de164 100644 --- a/newlib/libc/stdlib/arc4random.c +++ b/newlib/libc/stdlib/arc4random.c @@ -99,7 +99,7 @@ _rs_stir(void) rs->rs_have = 0; memset(rsx->rs_buf, 0, sizeof(rsx->rs_buf)); - rs->rs_count = 1600000; + rs->rs_count = (SIZE_MAX <= 65535) ? 65000 : 1600000; } static inline void