summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authormaxim <maxim@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2011-02-28 12:20:57 +0000
committermaxim <maxim@7b3dc134-2b1b-0410-93df-9e9f96275f8d>2011-02-28 12:20:57 +0000
commit06e276822b2d8eee497f28d81492896cedd1b08c (patch)
treeac33ce57cfecdcc5ca9f6baac650e7dc27e053a1 /libc
parent4bfa24eaa3c71ad1ddaaa18994be05316ab58958 (diff)
* elf/dl-lookup.c (GLRO_dl_debug_mask): Apply the forgotten one.
git-svn-id: svn://svn.eglibc.org/trunk@13000 7b3dc134-2b1b-0410-93df-9e9f96275f8d
Diffstat (limited to 'libc')
-rw-r--r--libc/ChangeLog.eglibc4
-rw-r--r--libc/elf/dl-lookup.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/libc/ChangeLog.eglibc b/libc/ChangeLog.eglibc
index 8b274c63d..0378e4f63 100644
--- a/libc/ChangeLog.eglibc
+++ b/libc/ChangeLog.eglibc
@@ -1,3 +1,7 @@
+2011-02-28 Denis Zaitceff <zaitceff@gmail.com>
+
+ * elf/dl-lookup.c (GLRO_dl_debug_mask): Apply the forgotten one.
+
2010-12-19 Gordon Schumacher <whiplash@pobox.com>
* locale/xlocale.x (DEFINE_CATEGORY): Fix merge issue.
diff --git a/libc/elf/dl-lookup.c b/libc/elf/dl-lookup.c
index 16d7fbcc3..11680a90b 100644
--- a/libc/elf/dl-lookup.c
+++ b/libc/elf/dl-lookup.c
@@ -423,7 +423,7 @@ do_lookup_x (const char *undef_name, uint_fast32_t new_hash,
hash table. */
if (__builtin_expect (tab->size, 0))
{
- assert (GLRO(dl_debug_mask) & DL_DEBUG_PRELINK);
+ assert (GLRO_dl_debug_mask & DL_DEBUG_PRELINK);
__rtld_lock_unlock_recursive (tab->lock);
goto success;
}