diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-04-01 09:41:37 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2009-04-01 09:41:37 +0000 |
commit | 1a6da537df1fe1726d95407ec04cf65caa1f8121 (patch) | |
tree | 6bce92bfbf8738fc893911aab9c9712da72ab6e6 /elf/dl-fini.c | |
parent | ef860a878bf532436a469fc1f89fe3366862a949 (diff) | |
download | glibc-1a6da537df1fe1726d95407ec04cf65caa1f8121.tar glibc-1a6da537df1fe1726d95407ec04cf65caa1f8121.tar.gz glibc-1a6da537df1fe1726d95407ec04cf65caa1f8121.tar.bz2 glibc-1a6da537df1fe1726d95407ec04cf65caa1f8121.zip |
Updated to fedora-glibc-20090401T0935cvs/fedora-glibc-2_9_90-12
Diffstat (limited to 'elf/dl-fini.c')
-rw-r--r-- | elf/dl-fini.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-fini.c b/elf/dl-fini.c index 273bc3a99d..ff4c33e808 100644 --- a/elf/dl-fini.c +++ b/elf/dl-fini.c @@ -1,5 +1,5 @@ /* Call the termination functions of loaded shared objects. - Copyright (C) 1995,96,1998-2002,2004, 2005 Free Software Foundation, Inc. + Copyright (C) 1995,96,1998-2002,2004-2005,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 @@ -140,7 +140,7 @@ _dl_fini (void) int do_audit = 0; again: #endif - for (Lmid_t ns = DL_NNS - 1; ns >= 0; --ns) + for (Lmid_t ns = GL(dl_nns) - 1; ns >= 0; --ns) { /* Protect against concurrent loads and unloads. */ __rtld_lock_lock_recursive (GL(dl_load_lock)); |