summaryrefslogtreecommitdiff
path: root/src/lib/libc/net/res_send.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/net/res_send.c')
-rw-r--r--src/lib/libc/net/res_send.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/lib/libc/net/res_send.c b/src/lib/libc/net/res_send.c
index 0456dc0cf1..b89398aab3 100644
--- a/src/lib/libc/net/res_send.c
+++ b/src/lib/libc/net/res_send.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: res_send.c,v 1.6 1997/06/03 22:43:43 deraadt Exp $ */ 1/* $OpenBSD: res_send.c,v 1.7 1997/06/04 03:18:41 dm Exp $ */
2 2
3/* 3/*
4 * ++Copyright++ 1985, 1989, 1993 4 * ++Copyright++ 1985, 1989, 1993
@@ -60,7 +60,7 @@
60static char sccsid[] = "@(#)res_send.c 8.1 (Berkeley) 6/4/93"; 60static char sccsid[] = "@(#)res_send.c 8.1 (Berkeley) 6/4/93";
61static char rcsid[] = "$From: res_send.c,v 8.12 1996/10/08 04:51:06 vixie Exp $"; 61static char rcsid[] = "$From: res_send.c,v 8.12 1996/10/08 04:51:06 vixie Exp $";
62#else 62#else
63static char rcsid[] = "$OpenBSD: res_send.c,v 1.6 1997/06/03 22:43:43 deraadt Exp $"; 63static char rcsid[] = "$OpenBSD: res_send.c,v 1.7 1997/06/04 03:18:41 dm Exp $";
64#endif 64#endif
65#endif /* LIBC_SCCS and not lint */ 65#endif /* LIBC_SCCS and not lint */
66 66
@@ -595,13 +595,12 @@ read_len:
595 timeout.tv_sec = 1; 595 timeout.tv_sec = 1;
596 timeout.tv_usec = 0; 596 timeout.tv_usec = 0;
597 wait: 597 wait:
598 dsmaskp = (fd_set *)malloc(howmany(s+1, NFDBITS) * 598 dsmaskp = (fd_set *)calloc(howmany(s+1, NFDBITS),
599 sizeof(fd_mask)); 599 sizeof(fd_mask));
600 if (dsmaskp == NULL) { 600 if (dsmaskp == NULL) {
601 res_close(); 601 res_close();
602 goto next_ns; 602 goto next_ns;
603 } 603 }
604 FD_ZERO(dsmaskp);
605 FD_SET(s, dsmaskp); 604 FD_SET(s, dsmaskp);
606 n = select(s+1, dsmaskp, (fd_set *)NULL, 605 n = select(s+1, dsmaskp, (fd_set *)NULL,
607 (fd_set *)NULL, &timeout); 606 (fd_set *)NULL, &timeout);