diff options
Diffstat (limited to 'sysdeps/unix/closedir.c')
-rw-r--r-- | sysdeps/unix/closedir.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysdeps/unix/closedir.c b/sysdeps/unix/closedir.c index a3903185a5..a63fa53b3a 100644 --- a/sysdeps/unix/closedir.c +++ b/sysdeps/unix/closedir.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1993, 1995, 1996, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -39,7 +39,6 @@ __closedir (DIR *dirp) __libc_lock_lock (dirp->lock); fd = dirp->fd; - free ((void *) dirp->data); __libc_lock_fini (dirp->lock); |