Fix compile time warning building with gcc 11.

PR 26795
	* elfedit.c (process_archive): Remove spurious call to free().
This commit is contained in:
Nick Clifton 2020-10-28 10:56:00 +00:00
parent 364bb90300
commit ec3f28df02
2 changed files with 5 additions and 1 deletions

View file

@ -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> 2020-10-27 Nick Clifton <nickc@redhat.com>
* dwarf.c (struct abbrev_list): New structure. Used to collect * dwarf.c (struct abbrev_list): New structure. Used to collect

View file

@ -655,7 +655,6 @@ process_archive (const char * file_name, FILE * file,
fclose (member_file); fclose (member_file);
free (member_file_name); free (member_file_name);
free (qualified_name);
} }
else if (is_thin_archive) else if (is_thin_archive)
{ {