glibc/dirent/bug-readdir1.c
Ulrich Drepper 05ae4d6ad9 Update.
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.
2002-06-22 05:58:14 +00:00

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;
}