blob: 05f955118627c02b11c8ff6bc2b402f956cc896e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- third_party/fontconfig/src/src/fccompat.c.orig 2023-03-30 00:40:33 UTC
+++ third_party/fontconfig/src/src/fccompat.c
@@ -184,7 +184,9 @@ FcRandom(void)
{
int32_t result;
-#if HAVE_RANDOM_R
+#if HAVE_ARC4RANDOM
+ result = arc4random() & 0x7fffffff;
+#elif HAVE_RANDOM_R
static struct random_data fcrandbuf;
static char statebuf[256];
static FcBool initialized = FcFalse;
|