mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-10-27 14:32:16 +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:
committed by
Matthias Clasen
parent
fd8056b532
commit
09aa6d3668
@@ -217,10 +217,9 @@ g_rand_new (void)
|
|||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
errno = 0;
|
|
||||||
dev_urandom = fopen("/dev/urandom", "rb");
|
dev_urandom = fopen("/dev/urandom", "rb");
|
||||||
}
|
}
|
||||||
while G_UNLIKELY (errno == EINTR);
|
while G_UNLIKELY (dev_urandom == NULL && errno == EINTR);
|
||||||
|
|
||||||
if (dev_urandom)
|
if (dev_urandom)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user