aboutsummaryrefslogblamecommitdiff
path: root/devel/electron23/files/patch-third__party_fontconfig_src_src_fccompat.c
blob: 95474c5028c228a2742fe844ffef5f0d5c907a63 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                               
--- third_party/fontconfig/src/src/fccompat.c.orig	2022-02-07 13:39:41 UTC
+++ third_party/fontconfig/src/src/fccompat.c
@@ -169,7 +169,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;