From: Roland McGrath Date: Thu, 29 Aug 2002 20:39:40 +0000 (+0000) Subject: * sysdeps/generic/readelflib.c (process_elf_file): Fix typo. X-Git-Tag: upstream/2.30~21251 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c5738211bd4a61e6950c3e4a61fbb4c366fd13df;p=external%2Fglibc.git * sysdeps/generic/readelflib.c (process_elf_file): Fix typo. * iconv/gconv_int.h: Include for alloca decl. (norm_add_slashes): alloca -> __alloca * sysdeps/generic/readelflib.c (process_elf_file): Make LOADADDR p_vaddr/p_offset when computing LOADADDR. --- diff --git a/ChangeLog b/ChangeLog index 60d8001..ce7fe27 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2002-08-29 Roland McGrath + + * sysdeps/generic/readelflib.c (process_elf_file): Fix typo. + + * iconv/gconv_int.h: Include for alloca decl. + (norm_add_slashes): alloca -> __alloca + 2002-08-29 Jakub Jelinek * stdio-common/vfprintf.c (vfprintf): Add builtin_expect for @@ -7,11 +14,9 @@ -mcpu=ultrasparc, not only tune for it. (ASFLAGS*): Set unconditionally. -2002-08-29 Jakub Jelinek - - * sysdeps/generic/readelflib.c (process_elf_file): Make loadaddr + * sysdeps/generic/readelflib.c (process_elf_file): Make LOADADDR ElfW(Addr). Don't mask upper 32-bits and lower 12 bits off from - p_vaddr/p_offset when computing loadaddr. + p_vaddr/p_offset when computing LOADADDR. 2002-08-29 Ulrich Drepper diff --git a/iconv/gconv_int.h b/iconv/gconv_int.h index a16a543..1ac878d 100644 --- a/iconv/gconv_int.h +++ b/iconv/gconv_int.h @@ -21,6 +21,7 @@ #define _GCONV_INT_H 1 #include "gconv.h" +#include /* For alloca used in macro below. */ __BEGIN_DECLS @@ -138,7 +139,7 @@ extern const char *__gconv_path_envvar attribute_hidden; if (*cp++ == '/') \ ++cnt; \ \ - tmp = result = alloca (cp - (str) + 3 + suffix_len); \ + tmp = result = __alloca (cp - (str) + 3 + suffix_len); \ cp = (str); \ while (*cp != '\0') \ *tmp++ = __toupper_l (*cp++, &_nl_C_locobj); \