summaryrefslogtreecommitdiff
path: root/elf/dl-object.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-09-08 21:31:59 +0000
committerUlrich Drepper <drepper@redhat.com>2001-09-08 21:31:59 +0000
commit455e8060b03bc12a2b3a25c9be92b5e420d806fd (patch)
tree859bf6f03c6b15c3f7cd049ef1126edccece25b3 /elf/dl-object.c
parent1181062126ed5daf104aa9f7beb847055c1d4adc (diff)
Update.
2001-09-08 Ben Collins <bcollins@debian.org> * sysdeps/arm/dl-machine.h (elf_machine_rel): Fix thinko in usage of RESOLVE() (r_type, not reloc->r_type).
Diffstat (limited to 'elf/dl-object.c')
-rw-r--r--elf/dl-object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-object.c b/elf/dl-object.c
index bfd4f2d8c4..9406ea1787 100644
--- a/elf/dl-object.c
+++ b/elf/dl-object.c
@@ -47,7 +47,7 @@ _dl_new_object (char *realname, const char *libname, int type,
newname = (struct libname_list *) (new + 1);
newname->name = (char *) memcpy (newname + 1, libname, libname_len);
- newname->next = NULL;
+ /* newname->next = NULL; We use calloc therefore not necessary. */
newname->dont_free = 1;
new->l_name = realname;