mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-24 22:46:15 +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
@ -216,11 +216,10 @@ g_rand_new (void)
|
||||
FILE* dev_urandom;
|
||||
|
||||
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