diff options
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/elfedit.c | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0aa511d..838f8b8 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2020-10-28 Nick Clifton <nickc@redhat.com> + + PR 26795 + * elfedit.c (process_archive): Remove spurious call to free(). + 2020-10-27 Nick Clifton <nickc@redhat.com> * dwarf.c (struct abbrev_list): New structure. Used to collect diff --git a/binutils/elfedit.c b/binutils/elfedit.c index d0e4e95..91cba1d 100644 --- a/binutils/elfedit.c +++ b/binutils/elfedit.c @@ -655,7 +655,6 @@ process_archive (const char * file_name, FILE * file, fclose (member_file); free (member_file_name); - free (qualified_name); } else if (is_thin_archive) { |