Merge pull request #382 from StevenYGui/master
fread returns element count, not element size
This commit is contained in:
commit
93086e9aa7
@ -168,7 +168,7 @@ static long read_random_bytes (void)
|
|||||||
#else
|
#else
|
||||||
FILE *f = fopen ("/dev/urandom", "r");
|
FILE *f = fopen ("/dev/urandom", "r");
|
||||||
|
|
||||||
if (fread (&randval, sizeof (randval), 1, f) != sizeof (randval)) {
|
if (fread (&randval, sizeof (randval), 1, f) != 1) {
|
||||||
fclose(f);
|
fclose(f);
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user