aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/mozilla/firefox-3.0.1/random_to_urandom.diff
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/mozilla/firefox-3.0.1/random_to_urandom.diff')
-rw-r--r--recipes/mozilla/firefox-3.0.1/random_to_urandom.diff26
1 files changed, 0 insertions, 26 deletions
diff --git a/recipes/mozilla/firefox-3.0.1/random_to_urandom.diff b/recipes/mozilla/firefox-3.0.1/random_to_urandom.diff
deleted file mode 100644
index f969752381..0000000000
--- a/recipes/mozilla/firefox-3.0.1/random_to_urandom.diff
+++ /dev/null
@@ -1,26 +0,0 @@
-# Component manager should not use /dev/random for generation ranodm numbers
-# It cause hangs on embedding platforms,which does not have enough devices for generation required entropy
-# Bug somewhere exists but it is very old
-Index: nsprpub/pr/src/md/unix/uxrng.c
-===================================================================
---- mozilla/nsprpub/pr/src/md/unix/uxrng.c.orig
-+++ mozilla/nsprpub/pr/src/md/unix/uxrng.c
-@@ -144,17 +144,17 @@
- #include <sys/stat.h>
- #include <fcntl.h>
-
- static int fdDevRandom;
- static PRCallOnceType coOpenDevRandom;
-
- static PRStatus OpenDevRandom( void )
- {
-- fdDevRandom = open( "/dev/random", O_RDONLY );
-+ fdDevRandom = open( "/dev/urandom", O_RDONLY );
- return((-1 == fdDevRandom)? PR_FAILURE : PR_SUCCESS );
- } /* end OpenDevRandom() */
-
- static size_t GetDevRandom( void *buf, size_t size )
- {
- int bytesIn;
- int rc;
-