diff options
author | Mark Wielaard <mark@klomp.org> | 2018-06-11 11:22:36 +0200 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2018-06-11 18:59:57 +0200 |
commit | 7aa8e239229cfbd0b230b4a095d0624fbb553055 (patch) | |
tree | b8053be7d2c20f54eb8e7398d553d1da4744c4cd /src | |
parent | 01044a9ed1d58bedb5d7f96f8ff40134d127a6d1 (diff) | |
download | elfutils-7aa8e239229cfbd0b230b4a095d0624fbb553055.tar.gz |
readelf: Return correct readp (or readendp) from print_form_data.
print_form_data returns the new readp (or readendp on error) to show how
much data was consumed. But when reading the .debug_str_offsets section
we would reuse readp and readendp. This meant the wrong readp would be
returned to the caller.
Signed-off-by: Mark Wielaard <mark@klomp.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/readelf.c | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 6484b9a5..fd45405f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2018-06-11 Mark Wielaard <mark@klomp.org> + + * readelf.c (print_form_data): Don't reuse readp and readendp when + reading str_offsets section. + 2018-06-10 Mark Wielaard <mark@klomp.org> * readelf.c (print_form_data): Don't cast value to ptrdiff_t, cast diff --git a/src/readelf.c b/src/readelf.c index fbda6c17..f1858971 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -7986,17 +7986,17 @@ print_form_data (Dwarf *dbg, int form, const unsigned char *readp, str = "???"; else { - readp = data->d_buf + str_offsets_base + val; - readendp = data->d_buf + data->d_size; - if ((size_t) (readendp - readp) < offset_len) + const unsigned char *strreadp = data->d_buf + str_offsets_base + val; + const unsigned char *strreadendp = data->d_buf + data->d_size; + if ((size_t) (strreadendp - strreadp) < offset_len) str = "???"; else { Dwarf_Off idx; if (offset_len == 8) - idx = read_8ubyte_unaligned_inc (dbg, readp); + idx = read_8ubyte_unaligned_inc (dbg, strreadp); else - idx = read_4ubyte_unaligned_inc (dbg, readp); + idx = read_4ubyte_unaligned_inc (dbg, strreadp); data = dbg->sectiondata[IDX_debug_str]; if (data == NULL || idx >= data->d_size |