diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index ef9fa5a..18ec182 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2019-05-27 Alan Modra <amodra@gmail.com> + + * readelf.c (process_section_groups): Continue processing groups + when sh_entsize exceeds group size. + 2019-05-24 Szabolcs Nagy <szabolcs.nagy@arm.com> * readelf.c (get_aarch64_dynamic_type): Handle DT_AARCH64_VARIANT_PCS. diff --git a/binutils/readelf.c b/binutils/readelf.c index 23ffd86..424624e 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -6875,7 +6875,7 @@ process_section_groups (Filedata * filedata) printable_section_name (filedata, section), (unsigned long) section->sh_entsize, (unsigned long) section->sh_size); - break; + continue; } start = (unsigned char *) get_data (NULL, filedata, section->sh_offset, |