From 80a18298f02005310cf0edc6163ae5eff5fad09a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 18 Mar 1998 12:22:11 +0000 Subject: Update. * dirent/list.c (test): Return error value. (main): Exit with error value. * sysdeps/unix/opendir.c (__opendir): Add missing initialization. * Makefile (distribute): Add test-skeleton.c. * test-skeleton.c: New file. * dirent/Makefile (tests): Add opendir-tst1. * dirent/opendir-tst1.c: New file. 1998-03-18 Ulrich Drepper Optimize memory handling. --- sysdeps/unix/opendir.c | 1 + 1 file changed, 1 insertion(+) (limited to 'sysdeps') diff --git a/sysdeps/unix/opendir.c b/sysdeps/unix/opendir.c index 2469917f45..ef7bc84866 100644 --- a/sysdeps/unix/opendir.c +++ b/sysdeps/unix/opendir.c @@ -83,6 +83,7 @@ __opendir (const char *name) return NULL; } dirp->data = (char *) (dirp + 1); + dirp->allocation = allocation; dirp->fd = fd; __libc_lock_init (dirp->lock); -- cgit 1.4.1