stdlib/arc4random.c: Fix reseed count for 16-bit targets.

This commit is contained in:
Jon Beniston 2018-09-05 10:57:33 +01:00 committed by Corinna Vinschen
parent 85c030a75f
commit 7283d2513c
1 changed files with 1 additions and 1 deletions

View File

@ -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