summaryrefslogtreecommitdiffstats
path: root/contrib/bind/res/res_send.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bind/res/res_send.c')
-rw-r--r--contrib/bind/res/res_send.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/bind/res/res_send.c b/contrib/bind/res/res_send.c
index da9b9ec..0e0dafd 100644
--- a/contrib/bind/res/res_send.c
+++ b/contrib/bind/res/res_send.c
@@ -55,7 +55,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)res_send.c 8.1 (Berkeley) 6/4/93";
-static char rcsid[] = "$Id: res_send.c,v 8.12 1996/10/08 04:51:06 vixie Exp $";
+static char rcsid[] = "$Id: res_send.c,v 8.13 1997/06/01 20:34:37 vixie Exp $";
#endif /* LIBC_SCCS and not lint */
/* change this to "0"
@@ -601,6 +601,11 @@ read_len:
if ((long) timeout.tv_sec <= 0)
timeout.tv_sec = 1;
timeout.tv_usec = 0;
+ if (s+1 > FD_SETSIZE) {
+ Perror(stderr, "s+1 > FD_SETSIZE", EMFILE);
+ res_close();
+ goto next_ns;
+ }
wait:
FD_ZERO(&dsmask);
FD_SET(s, &dsmask);
OpenPOWER on IntegriCloud