mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
05ae4d6ad9
2002-06-21 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/getdents.c [__ASSUME_GETDENTS64_SYSCALL] (__GETDENTS): Check for failed getdents64 syscall. * dirent/Makefile (tests): Add bug-readdir1. * dirent/bug-readdir1.c: New file.
37 lines
537 B
C
37 lines
537 B
C
#include <dirent.h>
|
|
#include <errno.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
DIR *dirp;
|
|
struct dirent* ent;
|
|
|
|
/* open a dir stream */
|
|
dirp = opendir ("/tmp");
|
|
if (dirp == NULL)
|
|
{
|
|
if (errno == ENOENT)
|
|
exit (0);
|
|
|
|
perror ("opendir");
|
|
exit (1);
|
|
}
|
|
|
|
/* close the dir stream, making it invalid */
|
|
if (closedir (dirp))
|
|
{
|
|
perror ("closedir");
|
|
exit (1);
|
|
}
|
|
|
|
ent = readdir (dirp);
|
|
|
|
return ent != NULL || errno != EBADF;
|
|
}
|