We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a27e9a commit 32332c1Copy full SHA for 32332c1
random.c
@@ -267,8 +267,7 @@ static int randombytes_bsd_randombytes(void *buf, size_t n)
267
#if defined(MAC_OS_X_VERSION_10_15) && \
268
MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_15
269
/* We prefere CCRandomGenerateBytes as it returns an error code while
270
- * arc4random_buf may fail silently on macOS. See PR #390, and
271
- * <https://opensource.apple.com/source/Libc/Libc-1439.40.11/gen/FreeBSD/arc4random.c.auto.html>
+ * arc4random_buf may fail silently on macOS.
272
*/
273
return (CCRandomGenerateBytes(buf, n) == kCCSuccess);
274
#else
0 commit comments