From: Ulrich Drepper Date: Sat, 1 Apr 2006 18:51:15 +0000 (+0000) Subject: [BZ #2498] X-Git-Tag: cvs/fedora-glibc-20060424T0820~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9388dcbb84dd616b20823ac46c8630b8c2845a82;p=thirdparty%2Fglibc.git [BZ #2498] 2006-04-01 Ulrich Drepper [BZ #2498] * nscd/connections.c (main_loop_poll): If the connection cannot be accepted because of user-imposed limits close the descriptor. --- diff --git a/ChangeLog b/ChangeLog index 926603a3813..0601dcac053 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-04-01 Ulrich Drepper + + [BZ #2498] + * nscd/connections.c (main_loop_poll): If the connection cannot be + accepted because of user-imposed limits close the descriptor. + 2006-03-31 Ulrich Drepper * sysdeps/unix/sysv/linux/Versions: Export sync_file_range with diff --git a/nscd/connections.c b/nscd/connections.c index 802b7c02d2a..d975b1818f9 100644 --- a/nscd/connections.c +++ b/nscd/connections.c @@ -1556,18 +1556,24 @@ main_loop_poll (void) /* We have a new incoming connection. Accept the connection. */ int fd = TEMP_FAILURE_RETRY (accept (sock, NULL, NULL)); - /* use the descriptor if we have not reached the limit. */ - if (fd >= 0 && firstfree < nconns) + /* Use the descriptor if we have not reached the limit. */ + if (fd >= 0) { - conns[firstfree].fd = fd; - conns[firstfree].events = POLLRDNORM; - starttime[firstfree] = now; - if (firstfree >= nused) - nused = firstfree + 1; - - do - ++firstfree; - while (firstfree < nused && conns[firstfree].fd != -1); + if (firstfree < nconns) + { + conns[firstfree].fd = fd; + conns[firstfree].events = POLLRDNORM; + starttime[firstfree] = now; + if (firstfree >= nused) + nused = firstfree + 1; + + do + ++firstfree; + while (firstfree < nused && conns[firstfree].fd != -1); + } + else + /* We cannot use the connection so close it. */ + close (fd); } --n;