summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-04-04 13:38:25 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-04-04 13:38:25 +0000
commit40a5057c8ad14c47469568b0f1ac66965293b52b (patch)
tree7ff76eea0784b3cee8e7682bbc08440432ecfd73 /lib
parenta48b20aa12db4b376c63f3b26876b04fcba40251 (diff)
Fix an fd leak if the read from /dev/arandom fails. Pointed out by
Markus Friedl.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/stdlib/random.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/stdlib/random.c b/lib/libc/stdlib/random.c
index 7c6e5f7eb92..2b97c5a54a2 100644
--- a/lib/libc/stdlib/random.c
+++ b/lib/libc/stdlib/random.c
@@ -32,7 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: random.c,v 1.7 2000/04/03 23:23:48 millert Exp $";
+static char *rcsid = "$OpenBSD: random.c,v 1.8 2000/04/04 13:38:24 millert Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -245,10 +245,8 @@ srandomdev()
else
len = rand_deg * sizeof(state[0]);
- if ((fd = open("/dev/arandom", O_RDONLY, 0)) != -1 &&
- read(fd, (void *) state, len) == (ssize_t) len) {
- close(fd);
- } else {
+ if ((fd = open("/dev/arandom", O_RDONLY, 0)) == -1 ||
+ read(fd, (void *) state, len) != (ssize_t) len) {
struct timeval tv;
u_int junk;
@@ -257,6 +255,8 @@ srandomdev()
srandom(getpid() ^ tv.tv_sec ^ tv.tv_usec ^ junk);
return;
}
+ if (fd != -1)
+ close(fd);
if (rand_type != TYPE_0) {
fptr = &state[rand_sep];