mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 02:03:35 +08:00
* nscd/connections.c (main_loop_poll): Fix test for read error.
(main_loop_epoll): Likewise.
This commit is contained in:
parent
d0a1ae9464
commit
c00d112835
@ -1,3 +1,8 @@
|
||||
2008-06-18 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* nscd/connections.c (main_loop_poll): Fix test for read error.
|
||||
(main_loop_epoll): Likewise.
|
||||
|
||||
2008-06-13 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/posix/getaddrinfo.c: Move _res_hconf_init call to a
|
||||
|
@ -1819,7 +1819,7 @@ main_loop_poll (void)
|
||||
|
||||
while (TEMP_FAILURE_RETRY (read (inotify_fd, &inev,
|
||||
sizeof (inev)))
|
||||
>= sizeof (struct inotify_event))
|
||||
>= (ssize_t) sizeof (struct inotify_event))
|
||||
{
|
||||
/* Check which of the files changed. */
|
||||
for (size_t dbcnt = 0; dbcnt < lastdb; ++dbcnt)
|
||||
@ -1974,7 +1974,7 @@ main_loop_epoll (int efd)
|
||||
|
||||
while (TEMP_FAILURE_RETRY (read (inotify_fd, &inev,
|
||||
sizeof (inev)))
|
||||
>= sizeof (struct inotify_event))
|
||||
>= (ssize_t) sizeof (struct inotify_event))
|
||||
{
|
||||
/* Check which of the files changed. */
|
||||
for (size_t dbcnt = 0; dbcnt < lastdb; ++dbcnt)
|
||||
|
Loading…
Reference in New Issue
Block a user