diff options
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index fcf6056..1297d27 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,9 @@ 2021-06-12 Alan Modra <amodra@gmail.com> + * readelf.c (process_file_header): Don't clear section_headers. + +2021-06-12 Alan Modra <amodra@gmail.com> + * readelf.c (get_section_headers): Don't test e_shoff here, leave that to get_32bit_section_headers or get_64bit_section_headers. (process_object): Throw away section header read to print file diff --git a/binutils/readelf.c b/binutils/readelf.c index 4217ea3..79724e0 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -5237,8 +5237,6 @@ process_file_header (Filedata * filedata) header->e_shstrndx = filedata->section_headers[0].sh_link; if (header->e_shstrndx >= header->e_shnum) header->e_shstrndx = SHN_UNDEF; - free (filedata->section_headers); - filedata->section_headers = NULL; } return true; |