$OpenBSD: patch-src_3rdparty_chromium_third_party_fontconfig_src_src_fccompat_c,v 1.2 2021/01/19 06:16:35 rsadowski Exp $

Index: src/3rdparty/chromium/third_party/fontconfig/src/src/fccompat.c
--- src/3rdparty/chromium/third_party/fontconfig/src/src/fccompat.c.orig
+++ src/3rdparty/chromium/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;
