summaryrefslogtreecommitdiff
path: root/time/sunbird/patches/patch-af
blob: eb52387b18147f8986c94c6a900752d26a44087f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
$NetBSD: patch-af,v 1.2 2006/06/27 11:11:52 joerg Exp $

--- security/nss/lib/freebl/unix_rand.c.orig	2006-04-04 01:01:51.000000000 +0000
+++ security/nss/lib/freebl/unix_rand.c
@@ -35,6 +35,7 @@
  * ***** END LICENSE BLOCK ***** */
 
 #include <stdio.h>
+#include <fcntl.h>
 #include <string.h>
 #include <signal.h>
 #include <unistd.h>
@@ -81,7 +82,8 @@ static size_t CopyLowBits(void *dst, siz
 }
 
 #if defined(SCO) || defined(UNIXWARE) || defined(BSDI) || defined(FREEBSD) \
-    || defined(NETBSD) || defined(NTO) || defined(DARWIN) || defined(OPENBSD)
+    || defined(NETBSD) || defined(NTO) || defined(DARWIN) || defined(OPENBSD) \
+    || defined(DRAGONFLY)
 #include <sys/times.h>
 
 #define getdtablesize() sysconf(_SC_OPEN_MAX)
@@ -694,7 +696,11 @@ safe_popen(char *cmd)
 	/* dup write-side of pipe to stderr and stdout */
 	if (p[1] != 1) dup2(p[1], 1);
 	if (p[1] != 2) dup2(p[1], 2);
-	close(0);
+	fd = open("/dev/null", O_RDONLY);
+	if (fd != 0) {
+	    dup2(fd, 0);
+	    close(fd);
+	}
         {
             int ndesc = getdtablesize();
             for (fd = PR_MIN(65536, ndesc); --fd > 2; close(fd));