diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-12-22 11:47:13 -0800 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2009-12-22 11:47:13 -0800 |
commit | e70ffcb0fa9a63e7befc3e513944aeb19d2e4748 (patch) | |
tree | aba3923f99432ec31efb46992e9e43d7d6d2fcae | |
parent | d34bd80fceb76fa66308bd8005ad28be96a01e36 (diff) | |
download | glibc-e70ffcb0fa9a63e7befc3e513944aeb19d2e4748.zip glibc-e70ffcb0fa9a63e7befc3e513944aeb19d2e4748.tar.gz glibc-e70ffcb0fa9a63e7befc3e513944aeb19d2e4748.tar.bz2 |
Hurd: Fix spurious mach_port_deallocate in getcwd.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/mach/hurd/getcwd.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2009-12-20 Samuel Thibault <samuel.thibault@ens-lyon.org> + + * sysdeps/mach/hurd/getcwd.c (cleanup): Do not call + __mach_port_deallocate on rootdevid. + 2009-12-17 Martin Schwidefsky <schwidefsky@de.ibm.com> * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela): Handle diff --git a/sysdeps/mach/hurd/getcwd.c b/sysdeps/mach/hurd/getcwd.c index 7e07e6b..7da677e 100644 --- a/sysdeps/mach/hurd/getcwd.c +++ b/sysdeps/mach/hurd/getcwd.c @@ -1,4 +1,5 @@ -/* Copyright (C) 1991,92,93,94,95,96,97,98,2002,04 Free Software Foundation, Inc. +/* Copyright (C) 1991,92,93,94,95,96,97,98,2002,2004,2009 + 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 @@ -60,7 +61,6 @@ _hurd_canonicalize_directory_name_internal (file_t thisdir, __mach_port_deallocate (__mach_task_self (), thisid); __mach_port_deallocate (__mach_task_self (), thisdevid); __mach_port_deallocate (__mach_task_self (), rootid); - __mach_port_deallocate (__mach_task_self (), rootdevid); if (dirbuf != NULL) __vm_deallocate (__mach_task_self (), |