mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 22:30:07 +00:00
Code cleanup in __dl_iterate_phdr.
This commit is contained in:
parent
ab00f4eac8
commit
c739ec3d81
@ -1,3 +1,8 @@
|
||||
2010-05-03 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* elf/dl-iteratephdr.c (__dl_iterate_phdr): Remove unnecessary
|
||||
assignment.
|
||||
|
||||
2010-05-02 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* misc/mntent_r.c (encode_name): The slow loop handles newlines so we
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* Get loaded objects program headers.
|
||||
Copyright (C) 2001-2004, 2006-2008, 2009 Free Software Foundation, Inc.
|
||||
Copyright (C) 2001-2004, 2006-2009, 2010 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Jakub Jelinek <jakub@redhat.com>, 2001.
|
||||
|
||||
@ -68,7 +68,6 @@ __dl_iterate_phdr (int (*callback) (struct dl_phdr_info *info,
|
||||
info.dlpi_phnum = l->l_phnum;
|
||||
info.dlpi_adds = GL(dl_load_adds);
|
||||
info.dlpi_subs = GL(dl_load_adds) - nloaded;
|
||||
info.dlpi_tls_modid = 0;
|
||||
info.dlpi_tls_data = NULL;
|
||||
info.dlpi_tls_modid = l->l_tls_modid;
|
||||
if (info.dlpi_tls_modid != 0)
|
||||
|
Loading…
Reference in New Issue
Block a user