mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
GRand: Check return value of fopen directly
This doesn't fix anything, it should just silence some static analysis tools.
This commit is contained in:
parent
01d8d43d0b
commit
a8ddd52a45
@ -217,10 +217,9 @@ g_rand_new (void)
|
||||
|
||||
do
|
||||
{
|
||||
errno = 0;
|
||||
dev_urandom = fopen("/dev/urandom", "rb");
|
||||
}
|
||||
while G_UNLIKELY (errno == EINTR);
|
||||
while G_UNLIKELY (dev_urandom == NULL && errno == EINTR);
|
||||
|
||||
if (dev_urandom)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user