mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
stdlib: Fix tst-getrandom memcmp call
The idea is to check if the up sizeof (buf) are equal, not only the first byte. Checked on x86_64-linux-gnu and i686-linux-gnu.
This commit is contained in:
@@ -189,7 +189,7 @@ test_getentropy (void)
|
||||
|
||||
/* The probability that these two buffers are equal is very
|
||||
small. */
|
||||
if (memcmp (buf, buf2, sizeof (buf) == 0))
|
||||
if (memcmp (buf, buf2, sizeof (buf)) == 0)
|
||||
{
|
||||
printf ("error: getentropy appears to return constant bytes\n");
|
||||
errors = true;
|
||||
|
||||
Reference in New Issue
Block a user