Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 8 Sep 2001 21:31:59 +0000 (21:31 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 8 Sep 2001 21:31:59 +0000 (21:31 +0000)
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).

ChangeLog
elf/dl-object.c
sysdeps/arm/dl-machine.h

index 2eadb41..52bdb75 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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).
+
 2001-09-08  Ulrich Drepper  <drepper@redhat.com>
 
        * elf/dl-object.c: Avoid allocating extra memory block for name.
index bfd4f2d..9406ea1 100644 (file)
@@ -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;
index 6abac52..2d802b7 100644 (file)
@@ -428,7 +428,7 @@ elf_machine_rel (struct link_map *map, const Elf32_Rel *reloc,
   else
     {
       const Elf32_Sym *const refsym = sym;
-      Elf32_Addr value = RESOLVE (&sym, version, reloc->r_type);
+      Elf32_Addr value = RESOLVE (&sym, version, r_type);
       if (sym)
        value += sym->st_value;