Release redbean 2.0.4

This commit is contained in:
Justine Tunney 2022-06-19 20:17:23 -07:00
parent d5312b60f7
commit 5ddf43332e
4 changed files with 19 additions and 24 deletions

View file

@ -35,6 +35,7 @@ static dontinline uint64_t rdrand_failover(void) {
if (r == -1 && errno == EINTR) {
r = 0;
} else if (r == -1 && errno == EAGAIN) {
r = 0;
f = 0;
} else {
return rand64();