diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2005-05-13 18:35:55 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2005-05-13 18:35:55 +0000 |
commit | a4a00738719766d06654e96d75026f9f19abd975 (patch) | |
tree | 4c59773a3bfb24fa713524da465f9947b6d034a4 /binutils | |
parent | f1e6ae7c1d567f98fba3e85efa4e5532965587c1 (diff) | |
download | fsf-binutils-gdb-a4a00738719766d06654e96d75026f9f19abd975.zip fsf-binutils-gdb-a4a00738719766d06654e96d75026f9f19abd975.tar.gz fsf-binutils-gdb-a4a00738719766d06654e96d75026f9f19abd975.tar.bz2 |
2005-05-13 H.J. Lu <hongjiu.lu@intel.com>
* readelf.c (dump_ia64_unwind): Get stamp with proper size.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 00ffe8b..1b4e03f 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2005-05-13 H.J. Lu <hongjiu.lu@intel.com> + + * readelf.c (dump_ia64_unwind): Get stamp with proper size. + 2005-05-12 Nick Clifton <nickc@redhat.com> * readelf.c (display_debug_lines): If pointer_size has not been diff --git a/binutils/readelf.c b/binutils/readelf.c index 0ec295b..4cf2aa9 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -4514,7 +4514,7 @@ dump_ia64_unwind (struct ia64_unw_aux_info *aux) (unsigned long) (tp->info.offset - aux->seg_base)); head = aux->info + (tp->info.offset - aux->info_addr); - stamp = BYTE_GET ((unsigned char *) head); + stamp = byte_get ((unsigned char *) head, sizeof (stamp)); printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n", (unsigned) UNW_VER (stamp), |