diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-18 12:22:11 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-18 12:22:11 +0000 |
commit | 80a18298f02005310cf0edc6163ae5eff5fad09a (patch) | |
tree | fa4db80e6d033ac93658d00c347eae9dae768d45 /sysdeps/unix/opendir.c | |
parent | 9eecb5e8f3903a6fe66ac88f9218935130e77042 (diff) | |
download | glibc-80a18298f02005310cf0edc6163ae5eff5fad09a.tar glibc-80a18298f02005310cf0edc6163ae5eff5fad09a.tar.gz glibc-80a18298f02005310cf0edc6163ae5eff5fad09a.tar.bz2 glibc-80a18298f02005310cf0edc6163ae5eff5fad09a.zip |
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 <drepper@cygnus.com>
Optimize memory handling.
Diffstat (limited to 'sysdeps/unix/opendir.c')
-rw-r--r-- | sysdeps/unix/opendir.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); |