From: Andreas Jaeger Date: Sat, 15 Apr 2000 04:34:14 +0000 (+0000) Subject: Update. X-Git-Tag: upstream/2.30~25826 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c84956c7a24f4693063346ea9c3f0d78cfa81dd5;p=external%2Fglibc.git Update. (elf_machine_got_rel): Cast sym correctly. --- diff --git a/ChangeLog b/ChangeLog index 9d43a83..d54a90e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -9,6 +9,7 @@ * sysdeps/mips/dl-machine.h (elf_machine_got_rel): Initialize symidx correctly. + (elf_machine_got_rel): Cast sym correctly. * sysdeps/mips/add_n.S: Use __PIC__, add end directive. * sysdeps/mips/addmul_1.S: Likewise. diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h index 5c628ce..965cef9 100644 --- a/sysdeps/mips/dl-machine.h +++ b/sysdeps/mips/dl-machine.h @@ -541,7 +541,7 @@ elf_machine_got_rel (struct link_map *map, int lazy) got += n; /* Keep track of the symbol index. */ symidx = map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val; - sym = (void *) D_PTR (map, l_info[DT_SYMTAB]) + symidx; + sym = (ElfW(Sym) *) D_PTR (map, l_info[DT_SYMTAB]) + symidx; i = (map->l_info[DT_MIPS (SYMTABNO)]->d_un.d_val - map->l_info[DT_MIPS (GOTSYM)]->d_un.d_val);